summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2001-10-22 17:39:06 +0000
committerGerd Moellmann <gerd@gnu.org>2001-10-22 17:39:06 +0000
commit4e1c9b008202de4cd655534659c33932b8e835b9 (patch)
tree1fada1c71df06d96f8f82b012090041c21edfb08 /Makefile.in
parent4699dfd90afcdc7c5b93a60b8bf1f275248dc3f7 (diff)
downloademacs-4e1c9b008202de4cd655534659c33932b8e835b9.tar.gz
(install-arch-indep): Add -h (follow symlinks)
to tar options.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 3 insertions, 3 deletions
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; \