diff options
| author | Karl Heuer | 1995-12-21 08:01:26 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-12-21 08:01:26 +0000 |
| commit | 99d7a69de15b1d67b8b73e61b44f849c93c56895 (patch) | |
| tree | 6b641455b5d0aab77b2da25a8e0b602e52c40090 | |
| parent | 3d68df05cab527d2e6f77977dca32b7328e05a8d (diff) | |
| download | emacs-99d7a69de15b1d67b8b73e61b44f849c93c56895.tar.gz emacs-99d7a69de15b1d67b8b73e61b44f849c93c56895.zip | |
Improve copying status message.
| -rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 76b3e35518c..66e0bed9cec 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -329,7 +329,7 @@ install-arch-indep: mkdir | |||
| 329 | dest=$$1 ; shift ; \ | 329 | dest=$$1 ; shift ; \ |
| 330 | [ -d $${dir} ] \ | 330 | [ -d $${dir} ] \ |
| 331 | && [ `(cd $${dir} && /bin/pwd)` != `(cd $${dest} && /bin/pwd)` ] \ | 331 | && [ `(cd $${dir} && /bin/pwd)` != `(cd $${dest} && /bin/pwd)` ] \ |
| 332 | && (echo "Copying $${dir}..." ; \ | 332 | && (echo "Copying $${dir} to $${dest}..." ; \ |
| 333 | (cd $${dir}; tar -cf - . )|(cd $${dest};umask 022; tar -xvf - ); \ | 333 | (cd $${dir}; tar -cf - . )|(cd $${dest};umask 022; tar -xvf - ); \ |
| 334 | for subdir in `find $${dest} -type d ! -name RCS -print` ; do \ | 334 | for subdir in `find $${dest} -type d ! -name RCS -print` ; do \ |
| 335 | rm -rf $${subdir}/RCS ; \ | 335 | rm -rf $${subdir}/RCS ; \ |
| @@ -347,7 +347,7 @@ install-arch-indep: mkdir | |||
| 347 | $(srcdir)/update-subdirs ${lispdir} | 347 | $(srcdir)/update-subdirs ${lispdir} |
| 348 | if [ `(cd ./etc; /bin/pwd)` != `(cd ${docdir}; /bin/pwd)` ]; \ | 348 | if [ `(cd ./etc; /bin/pwd)` != `(cd ${docdir}; /bin/pwd)` ]; \ |
| 349 | then \ | 349 | then \ |
| 350 | echo "Copying etc/DOC-* ..." ; \ | 350 | echo "Copying etc/DOC-* to ${docdir} ..." ; \ |
| 351 | (cd etc; tar -cf - DOC*)|(cd ${docdir}; umask 0; tar -xvf - ); \ | 351 | (cd etc; tar -cf - DOC*)|(cd ${docdir}; umask 0; tar -xvf - ); \ |
| 352 | (cd $(docdir); rm DOC) \ | 352 | (cd $(docdir); rm DOC) \ |
| 353 | else true; fi | 353 | else true; fi |