From 9a615acd227113a4e5e2c2d7aed1cb4e46c761f8 Mon Sep 17 00:00:00 2001 From: david Date: Tue, 20 Dec 2011 02:37:01 +0000 Subject: [PATCH] Use LDFLAGS when linking nmap-update. --- nmap-update/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nmap-update/Makefile.in b/nmap-update/Makefile.in index 19a86e415..7d9fc8f6b 100644 --- a/nmap-update/Makefile.in +++ b/nmap-update/Makefile.in @@ -20,7 +20,7 @@ NBASELIB = $(NBASEDIR)/libnbase.a all: nmap-update nmap-update: $(O_FILES) - $(CC) -o $@ $^ $(LIBS) + $(CC) -o $@ $(CFLAGS) $(LDFLAGS) $^ $(LIBS) %.o: %.c $(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) $<