From: Andrew Bartlett Date: Fri, 27 Jun 2008 02:56:20 +0000 (+1000) Subject: Fix installation of Samba4 into an empty tree. X-Git-Tag: samba-4.0.0alpha5~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9cb5327ac9811b3c1309d0e4082da3f54ab2a050;p=thirdparty%2Fsamba.git 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 --- 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) $@