(install-arch-indep): Revert last change.

This commit is contained in:
Andreas Schwab 2002-12-08 13:18:02 +00:00
parent 0d4d26a7c5
commit 2c4396c417

View file

@ -440,12 +440,12 @@ install-arch-indep: mkdir info
if test "`echo DOC-*`" != "DOC-*"; then rm DOC; fi); \
else true; fi
-unset CDPATH; \
if [ -r ${srcdir}/lisp ] \
&& [ -r ${srcdir}/lisp/simple.el ] \
&& [ x`(cd ${srcdir}/lisp; /bin/pwd)` != x`(cd ${lispdir}; /bin/pwd)` ]; \
if [ -r ./lisp ] \
&& [ -r ./lisp/simple.el ] \
&& [ x`(cd ./lisp; /bin/pwd)` != x`(cd ${lispdir}; /bin/pwd)` ]; \
then \
echo "Copying lisp/*.el and lisp/*.elc to ${lispdir} ..." ; \
(cd ${srcdir}/lisp; tar -chf - *.el *.elc) \
(cd lisp; tar -chf - *.el *.elc) \
|(cd ${lispdir}; umask 022; tar -xvf - && cat > /dev/null) || exit 1; \
(cd ${lispdir}; find . -exec chown $${LOGNAME} {} ';') ; \
else true; fi