summaryrefslogtreecommitdiff
path: root/boehm-gc/Makefile.in
diff options
context:
space:
mode:
authormmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>2009-02-09 22:51:40 +0000
committermmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>2009-02-09 22:51:40 +0000
commit386c4baf2a3d4ab994486d08de666590dfea199f (patch)
treee1d1a864befb5c2aa12fd31e706179e8e26e3732 /boehm-gc/Makefile.in
parenta63dcad5a0347429734a23bbae878387bfbe9594 (diff)
downloadgcc-386c4baf2a3d4ab994486d08de666590dfea199f.tar.gz
* Makefile.am (LTLDFLAGS): New variable.
(LINK): Use it. * Makefile.in: Regenerated. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@144045 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'boehm-gc/Makefile.in')
-rw-r--r--boehm-gc/Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/boehm-gc/Makefile.in b/boehm-gc/Makefile.in
index 8b4e3a291de..d6dcd9bcb5b 100644
--- a/boehm-gc/Makefile.in
+++ b/boehm-gc/Makefile.in
@@ -317,7 +317,8 @@ TESTS = gctest
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(AM_CPPFLAGS) $(CPPFLAGS) \
$(AM_CFLAGS) $(MY_CFLAGS) $(GC_CFLAGS)
-LINK = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(MY_CFLAGS) $(LDFLAGS) -o $@
+LTLDFLAGS = $(shell $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
+LINK = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(MY_CFLAGS) $(LTLDFLAGS) -o $@
# Work around what appears to be a GNU make bug handling MAKEFLAGS
# values defined in terms of make variables, as is the case for CC and