summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: dff86e2)
raw | patch | inline | side by side (parent: dff86e2)
author | Jason Riedy <ejr@EECS.Berkeley.EDU> | |
Tue, 28 Mar 2006 01:15:24 +0000 (17:15 -0800) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Tue, 28 Mar 2006 01:55:20 +0000 (17:55 -0800) |
For some reason, I need ALL_LDFLAGS in the git target only on
AIX. Once it builds, only one test "fails" on AIX 5.1 with
1.3.0.rc1, t5500-fetch-pack.sh, but it looks like it's some
odd tool problem in the tester + my setup and not a real bug.
Signed-off-by: Jason Riedy <ejr@cs.berkeley.edu>
Signed-off-by: Junio C Hamano <junkio@cox.net>
AIX. Once it builds, only one test "fails" on AIX 5.1 with
1.3.0.rc1, t5500-fetch-pack.sh, but it looks like it's some
odd tool problem in the tester + my setup and not a real bug.
Signed-off-by: Jason Riedy <ejr@cs.berkeley.edu>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Makefile | patch | blob | history |
diff --git a/Makefile b/Makefile
index 4edb3833212387f4a684cd6dc8ec99c5246a6e72..d945546eb88db19e8c56280f11711743d89a6d2b 100644 (file)
--- a/Makefile
+++ b/Makefile
git$X: git.c common-cmds.h $(LIB_FILE)
$(CC) -DGIT_VERSION='"$(GIT_VERSION)"' \
- $(ALL_CFLAGS) -o $@ $(filter %.c,$^) $(LIB_FILE) $(LIBS)
+ $(ALL_CFLAGS) -o $@ $(filter %.c,$^) $(LIB_FILE) \
+ $(ALL_LDFLAGS) $(LIBS)
common-cmds.h: Documentation/git-*.txt
./generate-cmdlist.sh > $@