Commit 73152614 authored by Mike Frysinger's avatar Mike Frysinger Committed by Stephen Hemminger

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: default avatarMike Frysinger <vapier@gentoo.org>
parent d63a9b2b
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment