[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1261857156-9037-1-git-send-email-vapier@gentoo.org>
Date: Sat, 26 Dec 2009 14:52:36 -0500
From: Mike Frysinger <vapier@...too.org>
To: stephen.hemminger@...tta.com, netdev@...r.kernel.org
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 <vapier@...too.org>
---
tc/Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tc/Makefile b/tc/Makefile
index f3dd2b7..0b5d7d3 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)
--
1.6.6.rc4
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists