projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9a26dbd
)
Do not let errors pass by unnoticed when running `make check'.
author
Junio C Hamano
<junkio@cox.net>
Wed, 14 Dec 2005 21:32:52 +0000
(13:32 -0800)
committer
Junio C Hamano
<junkio@cox.net>
Wed, 14 Dec 2005 21:32:52 +0000
(13:32 -0800)
[jc: originally from Amos Waterland.]
Signed-off-by: Junio C Hamano <junkio@cox.net>
Makefile
patch
|
blob
|
history
diff --git
a/Makefile
b/Makefile
index
01b6643
..
d494ad4
100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-449,7
+449,7
@@
test-delta$X: test-delta.c diff-delta.o patch-delta.o
$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $^
check:
- for i in *.c; do sparse $(ALL_CFLAGS) $(SPARSE_FLAGS) $$i; done
+ for i in *.c; do sparse $(ALL_CFLAGS) $(SPARSE_FLAGS) $$i
|| exit
; done