summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLutz Jaenicke <ljaenicke@innominate.com>2006-12-09 13:06:04 +0000
committerYasuyuki KOZAKAI <yasuyuki@netfilter.org>2006-12-09 13:06:04 +0000
commite78c69c8146c5dcd096ba13ac03d7a7bb90e3ea7 (patch)
tree63fbb5f19945b545b4f4fa88dea92083f42d5d14 /Makefile
parent72f7962bc4972fd823a14cc81f2ed6d7a2060cae (diff)
fix compile/install error for iptables-xml with DO_MULTI=1 (Lutz Jaenicke)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b651063b..c3e27007 100644
--- a/Makefile
+++ b/Makefile
@@ -170,7 +170,7 @@ iptables-xml: iptables-xml.c #iptables.o # $(STATIC_LIBS) libiptc/libiptc.a
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LDLIBS)
ifeq ($(DO_MULTI), 1)
-$(DESTDIR)$(BINDIR)/iptables-xml: iptables-xml
+$(DESTDIR)$(BINDIR)/iptables-xml: iptables
@[ -d $(DESTDIR)$(BINDIR) ] || mkdir -p $(DESTDIR)$(BINDIR)
ln -sf $< $@
else