From 729cbe84b8773ae93dc04de7a6e91b3e291c3c95 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Fri, 29 May 2009 18:37:40 -0400 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 --- tc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tc/Makefile b/tc/Makefile index d74880e1..3ff25358 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 $@ $<