From 73152614bcab505198f443d3f79fb090ba458e51 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 26 Dec 2009 14:52:36 -0500 Subject: [PATCH] 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 --- tc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tc/Makefile b/tc/Makefile index f3dd2b76..0b5d7d3e 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)