From 7ca0386d0b9937ed7142027092302a4b98400e1a Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 27 Jun 2008 12:56:20 +1000 Subject: 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 (This used to be commit 9cb5327ac9811b3c1309d0e4082da3f54ab2a050) --- source4/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4') diff --git a/source4/Makefile b/source4/Makefile index 3c2efe35af..e43ccf7731 100644 --- a/source4/Makefile +++ b/source4/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) $@ -- cgit