From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mike Frysinger Subject: [PATCH] tc/q_atm.so: respect LDFLAGS Date: Fri, 29 May 2009 18:37:40 -0400 Message-ID: <1243636660-13172-1-git-send-email-vapier@gentoo.org> To: stephen.hemminger@vyatta.com, netdev@vger.kernel.org Return-path: Received: from smtp.gentoo.org ([140.211.166.183]:60554 "EHLO smtp.gentoo.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752075AbZE2Whj (ORCPT ); Fri, 29 May 2009 18:37:39 -0400 Sender: netdev-owner@vger.kernel.org List-ID: The q_atm.so target defines its own link target, but it doesn't respect the $(LDFLAGS) variable. Signed-off-by: Mike Frysinger --- 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