# HG changeset patch # User Juanma Barranquero # Date 1037005388 0 # Node ID 0250bd3da532298d6f4c465979d6d832a716ab71 # Parent 76ff1f8826a6f03e85f34c072547a87699c49123 (install-arch-indep): Prepend $(srcdir)/ to lisp. diff -r 76ff1f8826a6 -r 0250bd3da532 Makefile.in --- a/Makefile.in Mon Nov 11 08:10:16 2002 +0000 +++ b/Makefile.in Mon Nov 11 09:03:08 2002 +0000 @@ -440,13 +440,12 @@ if test "`echo DOC-*`" != "DOC-*"; then rm DOC; fi); \ else true; fi -unset CDPATH; \ - if [ -r ./lisp ] \ - && [ -r ./lisp/simple.el ] \ - && [ x`(cd ./lisp; /bin/pwd)` != x`(cd ${lispdir}; /bin/pwd)` ] \ - && [ x`(cd ${srcdir}/lisp; /bin/pwd)` != x`(cd ./lisp; /bin/pwd)` ]; \ + if [ -r ${srcdir}/lisp ] \ + && [ -r ${srcdir}/lisp/simple.el ] \ + && [ x`(cd ${srcdir}/lisp; /bin/pwd)` != x`(cd ${lispdir}; /bin/pwd)` ]; \ then \ echo "Copying lisp/*.el and lisp/*.elc to ${lispdir} ..." ; \ - (cd lisp; tar -chf - *.el *.elc) \ + (cd ${srcdir}/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