From 5292d0f1faa79c793a35318d7830a4d391da3d1e Mon Sep 17 00:00:00 2001 From: filon Date: Tue, 11 Jun 2002 22:42:35 +0000 Subject: [PATCH] - fix for passing CC and compiler flags Changed files: dnsmasq-cc.patch -> 1.1 --- dnsmasq-cc.patch | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 dnsmasq-cc.patch diff --git a/dnsmasq-cc.patch b/dnsmasq-cc.patch new file mode 100644 index 0000000..10e7099 --- /dev/null +++ b/dnsmasq-cc.patch @@ -0,0 +1,16 @@ +--- dnsmasq-1.6/Makefile~ 2002-05-26 15:28:23.000000000 +0200 ++++ dnsmasq-1.6/Makefile 2002-06-09 09:10:17.000000000 +0200 +@@ -8,11 +8,11 @@ + rm -f *~ $(OBJS) dnsmasq + + .c.o: dnsmasq.h +- gcc -O2 -Wall -W -c $*.c ++ $(CC) $(OPTFLAGS) -Wall -W -c $*.c + + + dnsmasq : $(OBJS) dnsmasq.h config.h +- gcc -o $@ $(OBJS) ++ $(CC) -o $@ $(OBJS) + + install : dnsmasq + install -d $(BINDIR) -d $(MANDIR) -- 2.44.0