diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-04-03 12:51:46 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-04-03 12:51:46 -0700 |
commit | 6b27574f2145830ce8088378e79a6dc7df1ac60d (patch) | |
tree | 642057379403e91751ed8535e14c62f3b0ee349c /com32/Makefile | |
parent | 756b21adeca630fb5919b2d73c41f60c20b54196 (diff) | |
download | syslinux-elf-6b27574f2145830ce8088378e79a6dc7df1ac60d.tar.gz syslinux-elf-6b27574f2145830ce8088378e79a6dc7df1ac60d.tar.xz syslinux-elf-6b27574f2145830ce8088378e79a6dc7df1ac60d.zip |
set -e so the build stops on error.syslinux-3.50-pre3
Diffstat (limited to 'com32/Makefile')
-rw-r--r-- | com32/Makefile | 2 |
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 |