From: Mike Frysinger Date: Sat, 26 Dec 2009 19:52:36 +0000 (-0500) Subject: tc: respect LDFLAGS for %.so targets X-Git-Tag: v2.6.33~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=73152614bcab505198f443d3f79fb090ba458e51;p=thirdparty%2Fiproute2.git tc: respect LDFLAGS for %.so targets Since there aren't any targets that currently use this pattern rule, this is more of a proactive fix. Signed-off-by: Mike Frysinger --- diff --git a/tc/Makefile b/tc/Makefile index f3dd2b76e..0b5d7d3e2 100644 --- a/tc/Makefile +++ b/tc/Makefile @@ -87,7 +87,7 @@ YACC := bison LEX := flex %.so: %.c - $(CC) $(CFLAGS) -shared -fpic $< -o $@ + $(CC) $(CFLAGS) $(LDFLAGS) -shared -fpic $< -o $@ all: libtc.a tc $(TCSO)