Mercurial > emacs
changeset 48241:0250bd3da532
(install-arch-indep): Prepend $(srcdir)/ to lisp.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Mon, 11 Nov 2002 09:03:08 +0000 |
parents | 76ff1f8826a6 |
children | e0d8b1e38956 |
files | Makefile.in |
diffstat | 1 files changed, 4 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- 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