diff options
| author | Junio C Hamano <junkio@cox.net> | 2005-12-14 13:32:52 -0800 |
|---|---|---|
| committer | Junio C Hamano <junkio@cox.net> | 2005-12-14 13:32:52 -0800 |
| commit | 773b6339435ab3bddecb9b78e49720e22124b52a (patch) | |
| tree | 0d3914bab1d26208d272c890aaa65840f71087e2 | |
| parent | Merge branch 'hold/am' (diff) | |
| download | git-773b6339435ab3bddecb9b78e49720e22124b52a.tar.gz git-773b6339435ab3bddecb9b78e49720e22124b52a.zip | |
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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
