diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-10-22 17:38:17 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-10-22 17:38:17 +0000 |
commit | bc171472fa0af653f8e914c36c1b45f991a46305 (patch) | |
tree | 0bfb68933e4100310c536ee3b446dec69cbdcc05 /Makefile.in | |
parent | 784b89375e7bf03df358cf16b60c398947273cd9 (diff) | |
download | emacs-bc171472fa0af653f8e914c36c1b45f991a46305.tar.gz |
(install-arch-indep): Add -h (follow symlinks)
to tar options.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index cb06114a883..389e08e37ca 100644 --- a/Makefile.in +++ b/Makefile.in @@ -364,7 +364,7 @@ install-arch-indep: mkdir info [ -d $${dir} ] \ && [ `(cd $${dir} && /bin/pwd)` != `(cd $${dest} && /bin/pwd)` ] \ && (echo "Copying $${dir} to $${dest}..." ; \ - (cd $${dir}; tar -cf - . ) \ + (cd $${dir}; tar -chf - . ) \ | (cd $${dest}; umask 022; \ tar -xvf - && cat > /dev/null) || exit 1; \ for subdir in `find $${dest} -type d ! -name RCS ! -name CVS -print` ; do \ @@ -403,7 +403,7 @@ install-arch-indep: mkdir info if [ `(cd ./etc; /bin/pwd)` != `(cd ${docdir}; /bin/pwd)` ]; \ then \ echo "Copying etc/DOC-* to ${docdir} ..." ; \ - (cd ./etc; tar -cf - DOC*) \ + (cd ./etc; tar -chf - DOC*) \ |(cd ${docdir}; umask 0; tar -xvf - && cat > /dev/null) || exit 1; \ (cd $(docdir); chmod a+r DOC*; rm DOC); \ else true; fi @@ -414,7 +414,7 @@ install-arch-indep: mkdir info && [ x`(cd ${srcdir}/lisp; /bin/pwd)` != x`(cd ./lisp; /bin/pwd)` ]; \ then \ echo "Copying lisp/*.el and lisp/*.elc to ${lispdir} ..." ; \ - (cd lisp; tar -cf - *.el *.elc) \ + (cd lisp; tar -chf - *.el *.elc) \ |(cd ${lispdir}; umask 0; tar -xvf - && cat > /dev/null) || exit 1; \ else true; fi -unset CDPATH; \ |