From 9cb5327ac9811b3c1309d0e4082da3f54ab2a050 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 27 Jun 2008 12:56:20 +1000 Subject: [PATCH] Fix installation of Samba4 into an empty tree. Jelmer's previous patch failed because sh is very fussy about it's syntax, but only compaled in this case if you take the 'no existing binary' path. Andrew Bartlett --- source/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Makefile b/source/Makefile index 3c2efe35af0..e43ccf77317 100644 --- a/source/Makefile +++ b/source/Makefile @@ -249,14 +249,14 @@ uninstallmisc:: $(DESTDIR)$(bindir)/%: bin/% installdirs @mkdir -p $(@D) @echo Installing $(@F) as $@ - @if test -f $@; then; rm -f $@.old; mv $@ $@.old; fi + @if test -f $@; then echo -n ""; rm -f $@.old; mv $@ $@.old; fi @cp $< $@ @chmod $(INSTALLPERMS) $@ $(DESTDIR)$(sbindir)/%: bin/% installdirs @mkdir -p $(@D) @echo Installing $(@F) as $@ - @if test -f $@; then; rm -f $@.old; mv $@ $@.old; fi + @if test -f $@; then echo -n ""; rm -f $@.old; mv $@ $@.old; fi @cp $< $@ @chmod $(INSTALLPERMS) $@ -- 2.47.2