From 8f4b7891dbe9c00dc224f26ad86d4dd5a8caca4e Mon Sep 17 00:00:00 2001 From: Ruben Kerkhof Date: Wed, 4 Feb 2015 10:56:55 +0100 Subject: [PATCH] Copy the binaries during install, don't move them --- pdns/Makefile-recursor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.50.1