From 4e1c9b008202de4cd655534659c33932b8e835b9 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Mon, 22 Oct 2001 17:39:06 +0000 Subject: [PATCH] (install-arch-indep): Add -h (follow symlinks) to tar options. --- ChangeLog | 5 +++++ Makefile.in | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3e6e5d6fafd..135108d8e9a 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 1ebba6d9abe..f8555996c05 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; \ -- 2.39.2