Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Pitre <nico@cam.org>2006-03-08 21:19:19 +0300
committerJunio C Hamano <junkio@cox.net>2006-03-09 12:35:07 +0300
commit3d99a7f4fab41bb057d62c87cb596069a5aba106 (patch)
tree7b9f4d6fb7a646403a7ee557624d234ceb3a5bc5 /Makefile
parentbbe60241ae9f16c9356592e3fbaa709b6b848c4a (diff)
test-delta needs zlib to compile
Signed-off-by: Nicolas Pitre <nico@cam.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1c555daa43..cd2c2db19d 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