mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
iucvterm: abort if one of the recursive targets is failing
Abort processing as soon as one of the recursive targets is failing. Signed-off-by: Marc Hartmayer <mhartmay@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
This commit is contained in:
committed by
Jan Höppner
parent
db6f272607
commit
bc7359d2a3
@@ -21,7 +21,7 @@ clean: clean-recursive
|
||||
$(RECURSIVE_TARGETS):
|
||||
@target=`echo $@ |sed s/-recursive//`; \
|
||||
for d in $(SUBDIRS); do \
|
||||
(cd $$d && $(MAKE) $$target) \
|
||||
(cd $$d && $(MAKE) $$target) || exit 1; \
|
||||
done
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user