projects
/
platform
/
upstream
/
syslinux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
756b21a
)
set -e so the build stops on error.
syslinux-3.50-pre3
author
H. Peter Anvin
<hpa@zytor.com>
Tue, 3 Apr 2007 19:51:46 +0000
(12:51 -0700)
committer
H. Peter Anvin
<hpa@zytor.com>
Tue, 3 Apr 2007 19:51:46 +0000
(12:51 -0700)
com32/Makefile
patch
|
blob
|
history
diff --git
a/com32/Makefile
b/com32/Makefile
index
7e7bfcb
..
090ea93
100644
(file)
--- 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