From: Gerd Moellmann Date: Mon, 22 Oct 2001 17:38:17 +0000 (+0000) Subject: (install-arch-indep): Add -h (follow symlinks) X-Git-Tag: ttn-vms-21-2-B4~19246 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bc171472fa0af653f8e914c36c1b45f991a46305;p=emacs.git (install-arch-indep): Add -h (follow symlinks) to tar options. --- diff --git a/ChangeLog b/ChangeLog index 4b49aaa128d..a1472cbc428 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-10-22 Gerd Moellmann + + * Makefile.in (install-arch-indep): Add -h (follow symlinks) + to tar options. + 2001-10-20 Gerd Moellmann * (Version 21.1 released). 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; \