]> git.eshelyaron.com Git - emacs.git/commitdiff
(install-arch-indep): Add -h (follow symlinks)
authorGerd Moellmann <gerd@gnu.org>
Mon, 22 Oct 2001 17:39:06 +0000 (17:39 +0000)
committerGerd Moellmann <gerd@gnu.org>
Mon, 22 Oct 2001 17:39:06 +0000 (17:39 +0000)
to tar options.

ChangeLog
Makefile.in

index 3e6e5d6fafd940da8266e21dea0da26d6087bf21..135108d8e9a5b3aa9637657dcd3845b405e4a96c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-10-22  Gerd Moellmann  <gerd@gnu.org>
+
+       * Makefile.in (install-arch-indep): Add -h (follow symlinks)
+       to tar options.
+
 2001-10-20  Gerd Moellmann  <gerd@gnu.org>
 
        * Version 21.1 released.
index 1ebba6d9abe307e085f4999ddd839408bca142a2..f8555996c0575c54b399b748963e99f7d577c360 100644 (file)
@@ -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; \