diff options
| author | Gerd Moellmann | 2001-10-22 17:38:17 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-10-22 17:38:17 +0000 |
| commit | bc171472fa0af653f8e914c36c1b45f991a46305 (patch) | |
| tree | 0bfb68933e4100310c536ee3b446dec69cbdcc05 | |
| parent | 784b89375e7bf03df358cf16b60c398947273cd9 (diff) | |
| download | emacs-bc171472fa0af653f8e914c36c1b45f991a46305.tar.gz emacs-bc171472fa0af653f8e914c36c1b45f991a46305.zip | |
(install-arch-indep): Add -h (follow symlinks)
to tar options.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | Makefile.in | 6 |
2 files changed, 8 insertions, 3 deletions
| @@ -1,3 +1,8 @@ | |||
| 1 | 2001-10-22 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (install-arch-indep): Add -h (follow symlinks) | ||
| 4 | to tar options. | ||
| 5 | |||
| 1 | 2001-10-20 Gerd Moellmann <gerd@gnu.org> | 6 | 2001-10-20 Gerd Moellmann <gerd@gnu.org> |
| 2 | 7 | ||
| 3 | * (Version 21.1 released). | 8 | * (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 | |||
| 364 | [ -d $${dir} ] \ | 364 | [ -d $${dir} ] \ |
| 365 | && [ `(cd $${dir} && /bin/pwd)` != `(cd $${dest} && /bin/pwd)` ] \ | 365 | && [ `(cd $${dir} && /bin/pwd)` != `(cd $${dest} && /bin/pwd)` ] \ |
| 366 | && (echo "Copying $${dir} to $${dest}..." ; \ | 366 | && (echo "Copying $${dir} to $${dest}..." ; \ |
| 367 | (cd $${dir}; tar -cf - . ) \ | 367 | (cd $${dir}; tar -chf - . ) \ |
| 368 | | (cd $${dest}; umask 022; \ | 368 | | (cd $${dest}; umask 022; \ |
| 369 | tar -xvf - && cat > /dev/null) || exit 1; \ | 369 | tar -xvf - && cat > /dev/null) || exit 1; \ |
| 370 | for subdir in `find $${dest} -type d ! -name RCS ! -name CVS -print` ; do \ | 370 | for subdir in `find $${dest} -type d ! -name RCS ! -name CVS -print` ; do \ |
| @@ -403,7 +403,7 @@ install-arch-indep: mkdir info | |||
| 403 | if [ `(cd ./etc; /bin/pwd)` != `(cd ${docdir}; /bin/pwd)` ]; \ | 403 | if [ `(cd ./etc; /bin/pwd)` != `(cd ${docdir}; /bin/pwd)` ]; \ |
| 404 | then \ | 404 | then \ |
| 405 | echo "Copying etc/DOC-* to ${docdir} ..." ; \ | 405 | echo "Copying etc/DOC-* to ${docdir} ..." ; \ |
| 406 | (cd ./etc; tar -cf - DOC*) \ | 406 | (cd ./etc; tar -chf - DOC*) \ |
| 407 | |(cd ${docdir}; umask 0; tar -xvf - && cat > /dev/null) || exit 1; \ | 407 | |(cd ${docdir}; umask 0; tar -xvf - && cat > /dev/null) || exit 1; \ |
| 408 | (cd $(docdir); chmod a+r DOC*; rm DOC); \ | 408 | (cd $(docdir); chmod a+r DOC*; rm DOC); \ |
| 409 | else true; fi | 409 | else true; fi |
| @@ -414,7 +414,7 @@ install-arch-indep: mkdir info | |||
| 414 | && [ x`(cd ${srcdir}/lisp; /bin/pwd)` != x`(cd ./lisp; /bin/pwd)` ]; \ | 414 | && [ x`(cd ${srcdir}/lisp; /bin/pwd)` != x`(cd ./lisp; /bin/pwd)` ]; \ |
| 415 | then \ | 415 | then \ |
| 416 | echo "Copying lisp/*.el and lisp/*.elc to ${lispdir} ..." ; \ | 416 | echo "Copying lisp/*.el and lisp/*.elc to ${lispdir} ..." ; \ |
| 417 | (cd lisp; tar -cf - *.el *.elc) \ | 417 | (cd lisp; tar -chf - *.el *.elc) \ |
| 418 | |(cd ${lispdir}; umask 0; tar -xvf - && cat > /dev/null) || exit 1; \ | 418 | |(cd ${lispdir}; umask 0; tar -xvf - && cat > /dev/null) || exit 1; \ |
| 419 | else true; fi | 419 | else true; fi |
| 420 | -unset CDPATH; \ | 420 | -unset CDPATH; \ |