Sisyphus repository
Last update: 1 october 2023 | SRPMs: 18631 | Visits: 37778796
en ru br
ALT Linux repos
S:2.0.0-alt1.qa2
5.0: 2.0.0-alt1
4.1: 2.0.0-alt1
4.0: 2.0.0-alt0.M40.1

Group :: File tools
RPM: docbook-to-man

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs and FR  Repocop 

Patch: 0012-Ensure-build-failures-in-subdirectories-cause-entire.patch
Download


From: Chris Lamb <lamby@debian.org>
Date: Mon, 24 Aug 2020 12:22:39 +0100
Subject: Ensure build failures in subdirectories cause entire build failure.
---
 Makefile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/Makefile b/Makefile
index d7611b8..5e628bf 100644
--- a/Makefile
+++ b/Makefile
@@ -45,22 +45,22 @@ PIECES = 	cmd Instant Transpec
 
 
 all:
-	for dir in $(PIECES); \
+	set -e; for dir in $(PIECES); \
 	do (cd $$dir; $(MAKE) all); \
 	done
 
 install:
-	for dir in $(PIECES); \
+	set -e; for dir in $(PIECES); \
 	do (cd $$dir; $(MAKE) ROOT=$(ROOT) install); \
 	done
 
 
 clean:
-	for dir in $(PIECES); \
+	set -e; for dir in $(PIECES); \
 	do (cd $$dir; $(MAKE) clean); \
 	done
 
 clobber:    
-	for dir in $(PIECES); \
+	set -e; for dir in $(PIECES); \
 	do (cd $$dir; $(MAKE) clobber); \
 	done
 
design & coding: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
current maintainer: Michael Shigorin