summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2002-12-08 13:18:02 +0000
committerAndreas Schwab <schwab@suse.de>2002-12-08 13:18:02 +0000
commit9a2701fb2b30cc7c22798f574264fa183efeb3aa (patch)
tree9f31bacfa527cec69f0c67b9ed79db60682b9947 /Makefile.in
parent1ddbb72ab96c75a0040c8567f8fb70133f63cebd (diff)
downloademacs-9a2701fb2b30cc7c22798f574264fa183efeb3aa.tar.gz
(install-arch-indep): Revert last change.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in
index c69ab254349..07fd1f6063e 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -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