diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-07-07 13:21:20 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-07-07 13:21:20 +0000 |
commit | 22e74b543bb2997900846769df609ac5e7f000d7 (patch) | |
tree | a6c0d67d61dc0e35c8ab1a3fe8cd8575e8424dc0 /Makefile.in | |
parent | 08a5b2723f4d20f140f37128d1aad522a58f6036 (diff) | |
download | emacs-22e74b543bb2997900846769df609ac5e7f000d7.tar.gz |
(uninstall, install-arch-indep): Install info/ediff*.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index b3a1ce8e1bc..e1e6c9d0739 100644 --- a/Makefile.in +++ b/Makefile.in @@ -309,6 +309,8 @@ install-arch-dep: mkdir ### Note that we copy the DOC-* files from the build etc directory ### as well as lots of things from ${srcdir}/etc. +### Note that we copy DOC* and then delete DOC +### as a workaround for a bug in tar on Ultrix 4.2. install-arch-indep: mkdir -set ${COPYDESTS} ; \ @@ -341,7 +343,8 @@ install-arch-indep: mkdir if [ `(cd ./etc; /bin/pwd)` != `(cd ${docdir}; /bin/pwd)` ]; \ then \ echo "Copying etc/DOC-* ..." ; \ - (cd etc; tar -cf - DOC-*)|(cd ${docdir}; umask 0; tar -xvf - ); \ + (cd etc; tar -cf - DOC*)|(cd ${docdir}; umask 0; tar -xvf - ); \ + (cd $(docdir); rm DOC) \ else true; fi thisdir=`/bin/pwd`; \ if [ `(cd ${srcdir}/info && /bin/pwd)` != `(cd ${infodir} && /bin/pwd)` ]; \ @@ -350,7 +353,7 @@ install-arch-indep: mkdir if [ ! -f ${infodir}/dir ] && [ -f dir ]; then \ (cd $${thisdir}; ${INSTALL_DATA} ${srcdir}/info/dir ${infodir}/dir); \ fi ; \ - for f in cl* dired-x* emacs* forms* gnus* info* mh-e* sc* vip*; do \ + for f in cl* dired-x* ediff* emacs* forms* gnus* info* mh-e* sc* vip*; do \ (cd $${thisdir}; ${INSTALL_DATA} ${srcdir}/info/$$f ${infodir}/$$f); \ done); \ else true; fi @@ -391,7 +394,7 @@ uninstall: esac ; \ fi ; \ done - (cd ${infodir} && rm -f cl* dired-x* emacs* forms* gnus* info* mh-e* sc* vip*) + (cd ${infodir} && rm -f cl* dired-x* ediff* emacs* forms* gnus* info* mh-e* sc* vip*) (cd ${mandir} && rm -f emacs.1 etags.1 ctags.1) (cd ${bindir} && rm -f emacs-${version} $(EMACS)) |