summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Pitre <nico@cam.org>2006-03-08 18:19:19 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-03-09 09:35:07 (GMT)
commit3d99a7f4fab41bb057d62c87cb596069a5aba106 (patch)
tree7b9f4d6fb7a646403a7ee557624d234ceb3a5bc5
parentbbe60241ae9f16c9356592e3fbaa709b6b848c4a (diff)
downloadgit-3d99a7f4fab41bb057d62c87cb596069a5aba106.zip
git-3d99a7f4fab41bb057d62c87cb596069a5aba106.tar.gz
git-3d99a7f4fab41bb057d62c87cb596069a5aba106.tar.bz2
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--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1c555da..cd2c2db 100644
--- a/Makefile
+++ b/Makefile
@@ -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