* [PATCH] tc/q_atm.so: respect LDFLAGS
@ 2009-01-17 17:07 Mike Frysinger
0 siblings, 0 replies; 2+ messages in thread
From: Mike Frysinger @ 2009-01-17 17:07 UTC (permalink / raw)
To: stephen.hemminger, netdev
The q_atm.so target defines its own link target, but it doesn't respect the
$(LDFLAGS) variable.
Signed-off-by: Mike Frysinger <vapier@gentoo.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
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [PATCH] tc/q_atm.so: respect LDFLAGS
@ 2009-05-29 22:37 Mike Frysinger
0 siblings, 0 replies; 2+ messages in thread
From: Mike Frysinger @ 2009-05-29 22:37 UTC (permalink / raw)
To: stephen.hemminger, netdev
The q_atm.so target defines its own link target, but it doesn't respect the
$(LDFLAGS) variable.
Signed-off-by: Mike Frysinger <vapier@gentoo.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
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-05-29 22:37 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-17 17:07 [PATCH] tc/q_atm.so: respect LDFLAGS Mike Frysinger
-- strict thread matches above, loose matches on Subject: below --
2009-05-29 22:37 Mike Frysinger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).