From: osdl.net!shemminger Date: Tue, 28 Sep 2004 18:52:54 +0000 (+0000) Subject: fix when DESTDIR is set. X-Git-Tag: v2_6_9-041019~52 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c3759b76a2c28d63bb621345143d9e4c4e36ddca;p=thirdparty%2Fiproute2.git fix when DESTDIR is set. (Logical change 1.86) --- diff --git a/Makefile b/Makefile index db064e6ab..380857b07 100644 --- a/Makefile +++ b/Makefile @@ -48,9 +48,8 @@ install: all @for i in $(SUBDIRS) doc; do $(MAKE) -C $$i install; done install -m 0644 $(shell find etc/iproute2 -type f -maxdepth 1) $(DESTDIR)$(CONFDIR) install -m 0644 $(shell find man/man8 -type f -maxdepth 1) $(DESTDIR)$(MANDIR)/man8 - ln -sf $(DESTDIR)$(MANDIR)/man8/tc-pbfifo.8 $(DESTDIR)$(MANDIR)/man8/tc-bfifo.8 - ln -sf $(DESTDIR)$(MANDIR)/man8/tc-pbfifo.8 $(DESTDIR)$(MANDIR)/man8/tc-pfifo.8 - + ln -sf $(MANDIR)/man8/tc-pbfifo.8 $(DESTDIR)$(MANDIR)/man8/tc-bfifo.8 + ln -sf $(MANDIR)/man8/tc-pbfifo.8 $(DESTDIR)$(MANDIR)/man8/tc-pfifo.8 clean: @for i in $(SUBDIRS) doc; \