diff options
| author | Richard M. Stallman | 1996-06-03 20:06:27 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-06-03 20:06:27 +0000 |
| commit | 7d2cdc3cc750ec6d09d9953e34acedb31569d82e (patch) | |
| tree | b3a190cb783eb39aafe731ee9c13857dd0a3d36a | |
| parent | 26b430b7b30e3644a842ce2ee8d37abd7248fe62 (diff) | |
| download | emacs-7d2cdc3cc750ec6d09d9953e34acedb31569d82e.tar.gz emacs-7d2cdc3cc750ec6d09d9953e34acedb31569d82e.zip | |
(install-arch-indep): If cd etc makes output,
don't treat that as part of the tar data.
Check that ./lisp actually exists.
| -rw-r--r-- | Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 733133c5a2a..dc5d06cac87 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -354,10 +354,11 @@ install-arch-indep: mkdir | |||
| 354 | if [ `(cd ./etc; /bin/pwd)` != `(cd ${docdir}; /bin/pwd)` ]; \ | 354 | if [ `(cd ./etc; /bin/pwd)` != `(cd ${docdir}; /bin/pwd)` ]; \ |
| 355 | then \ | 355 | then \ |
| 356 | echo "Copying etc/DOC-* to ${docdir} ..." ; \ | 356 | echo "Copying etc/DOC-* to ${docdir} ..." ; \ |
| 357 | (cd etc; tar -cf - DOC*)|(cd ${docdir}; umask 0; tar -xvf - ); \ | 357 | (cd ./etc; tar -cf - DOC*)|(cd ${docdir}; umask 0; tar -xvf - ); \ |
| 358 | (cd $(docdir); chmod a+r DOC*; rm DOC) \ | 358 | (cd $(docdir); chmod a+r DOC*; rm DOC) \ |
| 359 | else true; fi | 359 | else true; fi |
| 360 | if [ x`(cd ./lisp; /bin/pwd)` != x`(cd ${lispdir}; /bin/pwd)` ] \ | 360 | if [ -r ./lisp ] \ |
| 361 | && [ x`(cd ./lisp; /bin/pwd)` != x`(cd ${lispdir}; /bin/pwd)` ] \ | ||
| 361 | && [ x`(cd ${srcdir}/lisp; /bin/pwd)` != x`(cd ./lisp; /bin/pwd)` ]; \ | 362 | && [ x`(cd ${srcdir}/lisp; /bin/pwd)` != x`(cd ./lisp; /bin/pwd)` ]; \ |
| 362 | then \ | 363 | then \ |
| 363 | echo "Copying lisp/*.el and lisp/*.elc to ${lispdir} ..." ; \ | 364 | echo "Copying lisp/*.el and lisp/*.elc to ${lispdir} ..." ; \ |