From: Glenn Morris Date: Fri, 18 May 2012 07:34:10 +0000 (-0700) Subject: * Makefile.in (install-arch-indep): Minor fix for earlier change. X-Git-Tag: emacs-24.2.90~471^2~31 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b7e1feeab6f88af3ebccbde6080e85c3cae8b340;p=emacs.git * Makefile.in (install-arch-indep): Minor fix for earlier change. --- diff --git a/Makefile.in b/Makefile.in index a24e40f1236..3b66db4e8c5 100644 --- a/Makefile.in +++ b/Makefile.in @@ -539,7 +539,8 @@ install-arch-indep: info install-etc install-leim for dir in ${COPYDIR} ; do \ [ -d $${dir} ] || exit 1 ; \ dest=$$1 ; shift ; \ - [ `(cd $${dest} && /bin/pwd)` = `(cd $${dir} && /bin/pwd)` ] && \ + [ -d $${dest} ] && \ + [ `(cd $${dest} && /bin/pwd)` = `(cd $${dir} && /bin/pwd)` ] && \ continue ; \ rm -rf $${dest} ; \ umask 022; ${MKDIR_P} $${dest} ; \