From: Mike Frysinger Date: Fri, 29 May 2009 22:37:40 +0000 (-0400) Subject: tc/q_atm.so: respect LDFLAGS X-Git-Tag: v2.6.31~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=729cbe84b8773ae93dc04de7a6e91b3e291c3c95;p=thirdparty%2Fiproute2.git 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 --- diff --git a/tc/Makefile b/tc/Makefile index d74880e1d..3ff253586 100644 --- a/tc/Makefile +++ b/tc/Makefile @@ -101,7 +101,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 $@ $<