set -e so the build stops on error. syslinux-3.50-pre3
authorH. Peter Anvin <hpa@zytor.com>
Tue, 3 Apr 2007 19:51:46 +0000 (12:51 -0700)
committerH. Peter Anvin <hpa@zytor.com>
Tue, 3 Apr 2007 19:51:46 +0000 (12:51 -0700)
com32/Makefile

index 7e7bfcb..090ea93 100644 (file)
@@ -1,4 +1,4 @@
 SUBDIRS = lib libutil modules samples
 
 all tidy clean spotless install:
-       for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done
+       set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done