Mercurial > emacs
changeset 3363:6dec27d736e2
(do-install): Use `-' in tar options.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 31 May 1993 21:28:36 +0000 |
parents | 9dfdffd26d9c |
children | 3dd9b89c6a17 |
files | Makefile.in |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/Makefile.in Mon May 31 21:28:10 1993 +0000 +++ b/Makefile.in Mon May 31 21:28:36 1993 +0000 @@ -340,7 +340,7 @@ [ -d $${dir} ] \ && [ `(cd $${dir} && /bin/pwd)` != `(cd $${dest} && /bin/pwd)` ] \ && (echo "Copying $${dir}..." ; \ - (cd $${dir}; tar cf - . )|(cd $${dest}; umask 0; tar xvf - ); \ + (cd $${dir}; tar -cf - . )|(cd $${dest};umask 0; tar -xvf - ); \ for subdir in `find $${dest} -type d ! -name RCS -print` ; do \ rm -rf $${subdir}/RCS ; \ rm -rf $${subdir}/CVS ; \ @@ -350,7 +350,7 @@ done [ `(cd etc; /bin/pwd)` != `(cd ${srcdir}/etc; /bin/pwd)` ] \ && (echo "Copying etc/DOC* ..." ; \ - (cd etc; tar cf - DOC*)|(cd ${etcdir}; umask 0; tar xvf - )) + (cd etc; tar -cf - DOC*)|(cd ${etcdir}; umask 0; tar -xvf - )) -[ `(cd ${srcdir}/info && /bin/pwd)` != `(cd ${infodir} && /bin/pwd)` ] \ && (cd ${srcdir}/info ; \ if [ ! -f ${infodir}/dir ] && [ -f dir ]; then \