aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-05-31 21:28:36 +0000
committerRichard M. Stallman1993-05-31 21:28:36 +0000
commitf8bc869a313bf255d35e0c1d255eb5aaa8296f24 (patch)
tree2bc1417a7e502a31bfa25a9c797c455ec95ca0f7
parent87a6b538cfae98e445af8506f061b8f0fbb65ef2 (diff)
downloademacs-f8bc869a313bf255d35e0c1d255eb5aaa8296f24.tar.gz
emacs-f8bc869a313bf255d35e0c1d255eb5aaa8296f24.zip
(do-install): Use `-' in tar options.
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index ea5228898b4..071a99e4f6a 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -340,7 +340,7 @@ do-install: mkdir
340 [ -d $${dir} ] \ 340 [ -d $${dir} ] \
341 && [ `(cd $${dir} && /bin/pwd)` != `(cd $${dest} && /bin/pwd)` ] \ 341 && [ `(cd $${dir} && /bin/pwd)` != `(cd $${dest} && /bin/pwd)` ] \
342 && (echo "Copying $${dir}..." ; \ 342 && (echo "Copying $${dir}..." ; \
343 (cd $${dir}; tar cf - . )|(cd $${dest}; umask 0; tar xvf - ); \ 343 (cd $${dir}; tar -cf - . )|(cd $${dest};umask 0; tar -xvf - ); \
344 for subdir in `find $${dest} -type d ! -name RCS -print` ; do \ 344 for subdir in `find $${dest} -type d ! -name RCS -print` ; do \
345 rm -rf $${subdir}/RCS ; \ 345 rm -rf $${subdir}/RCS ; \
346 rm -rf $${subdir}/CVS ; \ 346 rm -rf $${subdir}/CVS ; \
@@ -350,7 +350,7 @@ do-install: mkdir
350 done 350 done
351 [ `(cd etc; /bin/pwd)` != `(cd ${srcdir}/etc; /bin/pwd)` ] \ 351 [ `(cd etc; /bin/pwd)` != `(cd ${srcdir}/etc; /bin/pwd)` ] \
352 && (echo "Copying etc/DOC* ..." ; \ 352 && (echo "Copying etc/DOC* ..." ; \
353 (cd etc; tar cf - DOC*)|(cd ${etcdir}; umask 0; tar xvf - )) 353 (cd etc; tar -cf - DOC*)|(cd ${etcdir}; umask 0; tar -xvf - ))
354 -[ `(cd ${srcdir}/info && /bin/pwd)` != `(cd ${infodir} && /bin/pwd)` ] \ 354 -[ `(cd ${srcdir}/info && /bin/pwd)` != `(cd ${infodir} && /bin/pwd)` ] \
355 && (cd ${srcdir}/info ; \ 355 && (cd ${srcdir}/info ; \
356 if [ ! -f ${infodir}/dir ] && [ -f dir ]; then \ 356 if [ ! -f ${infodir}/dir ] && [ -f dir ]; then \