# HG changeset patch # User Karl Heuer # Date 819532886 0 # Node ID 94f0319d4cbbdd8a7c63f37904c23c65fc2cbc07 # Parent 7d48799c80b5997975a164b01d7eee1b455513b4 Improve copying status message. diff -r 7d48799c80b5 -r 94f0319d4cbb Makefile.in --- a/Makefile.in Thu Dec 21 07:59:49 1995 +0000 +++ b/Makefile.in Thu Dec 21 08:01:26 1995 +0000 @@ -329,7 +329,7 @@ dest=$$1 ; shift ; \ [ -d $${dir} ] \ && [ `(cd $${dir} && /bin/pwd)` != `(cd $${dest} && /bin/pwd)` ] \ - && (echo "Copying $${dir}..." ; \ + && (echo "Copying $${dir} to $${dest}..." ; \ (cd $${dir}; tar -cf - . )|(cd $${dest};umask 022; tar -xvf - ); \ for subdir in `find $${dest} -type d ! -name RCS -print` ; do \ rm -rf $${subdir}/RCS ; \ @@ -347,7 +347,7 @@ $(srcdir)/update-subdirs ${lispdir} if [ `(cd ./etc; /bin/pwd)` != `(cd ${docdir}; /bin/pwd)` ]; \ then \ - echo "Copying etc/DOC-* ..." ; \ + echo "Copying etc/DOC-* to ${docdir} ..." ; \ (cd etc; tar -cf - DOC*)|(cd ${docdir}; umask 0; tar -xvf - ); \ (cd $(docdir); rm DOC) \ else true; fi