projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f2b3d08
)
Fail if any subdir fails.
author
Keith Whitwell
<keith@tungstengraphics.com>
Wed, 14 Apr 2004 14:41:18 +0000
(14:41 +0000)
committer
Keith Whitwell
<keith@tungstengraphics.com>
Wed, 14 Apr 2004 14:41:18 +0000
(14:41 +0000)
src/Makefile
patch
|
blob
|
history
diff --git
a/src/Makefile
b/src/Makefile
index 8003c5a95c5d7634dd4862b08cd35c2369c3a037..8e9b8b966848d88aa26704befbf586f7dca51dbf 100644
(file)
--- a/
src/Makefile
+++ b/
src/Makefile
@@
-13,7
+13,7
@@
default: $(LIB_DIR) subdirs
subdirs:
@for dir in $(SUBDIRS) ; do \
if [ -d $$dir ] ; then \
- (cd $$dir ; make) ; \
+ (cd $$dir ; make)
|| exit 1
; \
fi \
done