From: Neil Roberts Date: Thu, 21 Aug 2008 19:38:23 +0000 (+0100) Subject: config.mak.in: Pass on LDFLAGS from configure X-Git-Tag: v1.6.1-rc1~321 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=1352fdbe3b16f30bfad308b737bc79e7b980318a;p=git.git config.mak.in: Pass on LDFLAGS from configure The configure script allows you to specify flags to pass to the linker step in the LDFLAGS environment variable but this was being ignored in the Makefile. Now a make variable gets set to the value passed down from the configure script. Signed-off-by: Neil Roberts Signed-off-by: Junio C Hamano --- diff --git a/config.mak.in b/config.mak.in index b77614953..f67d673d0 100644 --- a/config.mak.in +++ b/config.mak.in @@ -3,6 +3,7 @@ CC = @CC@ CFLAGS = @CFLAGS@ +LDFLAGS = @LDFLAGS@ AR = @AR@ TAR = @TAR@ #INSTALL = @INSTALL@ # needs install-sh or install.sh in sources