[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1243636660-13172-1-git-send-email-vapier@gentoo.org>
Date: Fri, 29 May 2009 18:37:40 -0400
From: Mike Frysinger <vapier@...too.org>
To: stephen.hemminger@...tta.com, netdev@...r.kernel.org
Subject: [PATCH] tc/q_atm.so: respect LDFLAGS
The q_atm.so target defines its own link target, but it doesn't respect the
$(LDFLAGS) variable.
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 bd9b833..2a28363 100644
--- a/tc/Makefile
+++ b/tc/Makefile
@@ -86,7 +86,7 @@ clean:
rm -f emp_ematch.yacc.output
q_atm.so: q_atm.c
- $(CC) $(CFLAGS) -shared -fpic -o q_atm.so q_atm.c -latm
+ $(CC) $(CFLAGS) $(LDFLAGS) -shared -fpic -o q_atm.so q_atm.c -latm
%.yacc.c: %.y
$(YACC) $(YACCFLAGS) -o $@ $<
--
1.6.1
--
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