aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.in9
1 files changed, 4 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in
index a9664fcba7f..c69ab254349 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -440,13 +440,12 @@ install-arch-indep: mkdir info
440 if test "`echo DOC-*`" != "DOC-*"; then rm DOC; fi); \ 440 if test "`echo DOC-*`" != "DOC-*"; then rm DOC; fi); \
441 else true; fi 441 else true; fi
442 -unset CDPATH; \ 442 -unset CDPATH; \
443 if [ -r ./lisp ] \ 443 if [ -r ${srcdir}/lisp ] \
444 && [ -r ./lisp/simple.el ] \ 444 && [ -r ${srcdir}/lisp/simple.el ] \
445 && [ x`(cd ./lisp; /bin/pwd)` != x`(cd ${lispdir}; /bin/pwd)` ] \ 445 && [ x`(cd ${srcdir}/lisp; /bin/pwd)` != x`(cd ${lispdir}; /bin/pwd)` ]; \
446 && [ x`(cd ${srcdir}/lisp; /bin/pwd)` != x`(cd ./lisp; /bin/pwd)` ]; \
447 then \ 446 then \
448 echo "Copying lisp/*.el and lisp/*.elc to ${lispdir} ..." ; \ 447 echo "Copying lisp/*.el and lisp/*.elc to ${lispdir} ..." ; \
449 (cd lisp; tar -chf - *.el *.elc) \ 448 (cd ${srcdir}/lisp; tar -chf - *.el *.elc) \
450 |(cd ${lispdir}; umask 022; tar -xvf - && cat > /dev/null) || exit 1; \ 449 |(cd ${lispdir}; umask 022; tar -xvf - && cat > /dev/null) || exit 1; \
451 (cd ${lispdir}; find . -exec chown $${LOGNAME} {} ';') ; \ 450 (cd ${lispdir}; find . -exec chown $${LOGNAME} {} ';') ; \
452 else true; fi 451 else true; fi