summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Riedy <ejr@EECS.Berkeley.EDU>2006-03-28 01:15:24 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-03-28 01:55:20 (GMT)
commit9c48666aa0745c666593bb7383e17f78c43eb36d (patch)
treef28f757cf87659791469976b017f9d89eeb463bd
parentdff86e282fa38bf60d53b82cfa54f5f449563338 (diff)
downloadgit-9c48666aa0745c666593bb7383e17f78c43eb36d.zip
git-9c48666aa0745c666593bb7383e17f78c43eb36d.tar.gz
git-9c48666aa0745c666593bb7383e17f78c43eb36d.tar.bz2
Add ALL_LDFLAGS to the git target.
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>
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4edb383..d945546 100644
--- a/Makefile
+++ b/Makefile
@@ -455,7 +455,8 @@ strip: $(PROGRAMS) git$X
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 > $@