From bc03cde15ec97ffe12ff7673f56439450790c882 Mon Sep 17 00:00:00 2001 From: Michael Shigorin Date: Mon, 28 Mar 2016 11:46:46 +0300 Subject: [PATCH] pkg.in: bail out if anything goes wrong Failing to kaboom just in time can make (and has just made) it harder to figure out the culprit down the road; e.g. metadata target's tar(1) might fail to find *some* files that haven't been copied over due to a single one missing by that run. --- pkg.in/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg.in/Makefile b/pkg.in/Makefile index f307689f..b380ff9f 100644 --- a/pkg.in/Makefile +++ b/pkg.in/Makefile @@ -8,5 +8,5 @@ endif # sequential execution, no reason to haste all: @for dir in lists groups profiles; do \ - $(MAKE) -C $$dir; \ + $(MAKE) -C $$dir || exit; \ done