]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Fix that "make install" fails due to "text file busy" error.
authorWouter Wijngaards <wouter@nlnetlabs.nl>
Wed, 17 Feb 2016 15:51:57 +0000 (15:51 +0000)
committerWouter Wijngaards <wouter@nlnetlabs.nl>
Wed, 17 Feb 2016 15:51:57 +0000 (15:51 +0000)
git-svn-id: file:///svn/unbound/trunk@3626 be551aaa-1e26-0410-a405-d3ace91eadb9

Makefile.in
doc/Changelog

index 15d6d989c7efb0bd65f10e62d3b3493876c89ff9..ff46581eb6d857637fda56fd6fe36dc67b4301ec 100644 (file)
@@ -507,11 +507,11 @@ install-all:      all $(PYTHONMOD_INSTALL) $(PYUNBOUND_INSTALL) $(UNBOUND_EVENT_INSTA
        $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man8
        $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man5
        $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
-       $(LIBTOOL) --mode=install cp unbound$(EXEEXT) $(DESTDIR)$(sbindir)/unbound$(EXEEXT)
-       $(LIBTOOL) --mode=install cp unbound-checkconf$(EXEEXT) $(DESTDIR)$(sbindir)/unbound-checkconf$(EXEEXT)
-       $(LIBTOOL) --mode=install cp unbound-control$(EXEEXT) $(DESTDIR)$(sbindir)/unbound-control$(EXEEXT)
-       $(LIBTOOL) --mode=install cp unbound-host$(EXEEXT) $(DESTDIR)$(sbindir)/unbound-host$(EXEEXT)
-       $(LIBTOOL) --mode=install cp unbound-anchor$(EXEEXT) $(DESTDIR)$(sbindir)/unbound-anchor$(EXEEXT)
+       $(LIBTOOL) --mode=install cp -f unbound$(EXEEXT) $(DESTDIR)$(sbindir)/unbound$(EXEEXT)
+       $(LIBTOOL) --mode=install cp -f unbound-checkconf$(EXEEXT) $(DESTDIR)$(sbindir)/unbound-checkconf$(EXEEXT)
+       $(LIBTOOL) --mode=install cp -f unbound-control$(EXEEXT) $(DESTDIR)$(sbindir)/unbound-control$(EXEEXT)
+       $(LIBTOOL) --mode=install cp -f unbound-host$(EXEEXT) $(DESTDIR)$(sbindir)/unbound-host$(EXEEXT)
+       $(LIBTOOL) --mode=install cp -f unbound-anchor$(EXEEXT) $(DESTDIR)$(sbindir)/unbound-anchor$(EXEEXT)
        $(INSTALL) -c -m 644 doc/unbound.8 $(DESTDIR)$(mandir)/man8
        $(INSTALL) -c -m 644 doc/unbound-checkconf.8 $(DESTDIR)$(mandir)/man8
        $(INSTALL) -c -m 644 doc/unbound-control.8 $(DESTDIR)$(mandir)/man8
index 758e55edd3ea114fe2b0d61d5164c0ccf45fd3fb..eeca4ca1fe58c14f0806378df30e3a268d768db8 100644 (file)
@@ -1,3 +1,6 @@
+17 February 2016: Wouter
+       - Fix that "make install" fails due to "text file busy" error.
+
 16 February 2016: Wouter
        - Set IPPROTO_IP6 for ipv6 sockets otherwise invalid argument error.