diff options
author | Nicolas Pitre <nico@cam.org> | 2006-03-08 13:19:19 -0500 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-03-09 01:35:07 -0800 |
commit | 3d99a7f4fab41bb057d62c87cb596069a5aba106 (patch) | |
tree | 7b9f4d6fb7a646403a7ee557624d234ceb3a5bc5 | |
parent | git-fmt-merge-msg cleanup (diff) | |
download | tgif-3d99a7f4fab41bb057d62c87cb596069a5aba106.tar.xz |
test-delta needs zlib to compile
Signed-off-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -564,7 +564,7 @@ test-date$X: test-date.c date.o ctype.o $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) test-date.c date.o ctype.o test-delta$X: test-delta.c diff-delta.o patch-delta.o - $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $^ + $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $^ -lz check: for i in *.c; do sparse $(ALL_CFLAGS) $(SPARSE_FLAGS) $$i || exit; done |