summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2007-04-03 12:51:46 -0700
committerH. Peter Anvin <hpa@zytor.com>2007-04-03 12:51:46 -0700
commit6b27574f2145830ce8088378e79a6dc7df1ac60d (patch)
tree642057379403e91751ed8535e14c62f3b0ee349c
parent756b21adeca630fb5919b2d73c41f60c20b54196 (diff)
downloadsyslinux-6b27574f2145830ce8088378e79a6dc7df1ac60d.tar.gz
set -e so the build stops on error.syslinux-3.50-pre3
-rw-r--r--com32/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/Makefile b/com32/Makefile
index 7e7bfcb6..090ea93e 100644
--- a/com32/Makefile
+++ b/com32/Makefile
@@ -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