From: Ruben Kerkhof Date: Wed, 4 Feb 2015 09:56:55 +0000 (+0100) Subject: Copy the binaries during install, don't move them X-Git-Tag: rec-3.7.0~6^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8f4b7891dbe9c00dc224f26ad86d4dd5a8caca4e;p=pdns Copy the binaries during install, don't move them --- diff --git a/pdns/Makefile-recursor b/pdns/Makefile-recursor index af981c69e..cbee61e76 100644 --- a/pdns/Makefile-recursor +++ b/pdns/Makefile-recursor @@ -108,12 +108,12 @@ basic_checks: install: build-stamp -mkdir -p $(DESTDIR)/$(SBINDIR) - mv pdns_recursor $(DESTDIR)/$(SBINDIR) + cp pdns_recursor $(DESTDIR)/$(SBINDIR) ifeq ($(STRIP_BINARIES), 1) strip $(DESTDIR)/$(SBINDIR)/pdns_recursor endif mkdir -p $(DESTDIR)/$(BINDIR) - mv rec_control $(DESTDIR)/$(BINDIR) + cp rec_control $(DESTDIR)/$(BINDIR) ifeq ($(STRIP_BINARIES), 1) strip $(DESTDIR)/$(BINDIR)/rec_control endif