aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-12-14 13:32:52 -0800
committerJunio C Hamano <junkio@cox.net>2005-12-14 13:32:52 -0800
commit773b6339435ab3bddecb9b78e49720e22124b52a (patch)
tree0d3914bab1d26208d272c890aaa65840f71087e2
parent9a26dbd120110ad4e07d3047abc13d615183c8ec (diff)
downloadgit-773b6339435ab3bddecb9b78e49720e22124b52a.tar.gz
git-773b6339435ab3bddecb9b78e49720e22124b52a.tar.xz
Do not let errors pass by unnoticed when running `make check'.
[jc: originally from Amos Waterland.] Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 01b6643bd..d494ad4b1 100644
--- 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