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 <vapier@gentoo.org>
This commit is contained in:
Mike Frysinger 2009-12-26 14:52:36 -05:00 committed by Stephen Hemminger
parent d63a9b2b1e
commit 73152614bc
1 changed files with 1 additions and 1 deletions

View File

@ -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)