aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2001-02-02 13:04:00 +0000
committerGerd Moellmann2001-02-02 13:04:00 +0000
commit5db37a2eb457e48e26a4ec7acb0f4e3dd5a4025a (patch)
tree981fa408e8c2645f6c49ef1780583e38d7b27512
parent20b28f82e4940de6ab38791aaa229a3c3b45c60f (diff)
downloademacs-5db37a2eb457e48e26a4ec7acb0f4e3dd5a4025a.tar.gz
emacs-5db37a2eb457e48e26a4ec7acb0f4e3dd5a4025a.zip
(uninstall): Ignore exit code of `rm'.
-rw-r--r--ChangeLog2
-rw-r--r--Makefile.in2
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8a1b780d530..df3e013beb6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
12001-02-02 Gerd Moellmann <gerd@gnu.org> 12001-02-02 Gerd Moellmann <gerd@gnu.org>
2 2
3 * Makefile.in (uninstall): Ignore exit code of `rm'.
4
3 * Makefile.in (uninstall): Remove more info files. Remove 5 * Makefile.in (uninstall): Remove more info files. Remove
4 ${libexecdir}/emacs/${version}. Remove ${archlibdir}/fns-*. 6 ${libexecdir}/emacs/${version}. Remove ${archlibdir}/fns-*.
5 7
diff --git a/Makefile.in b/Makefile.in
index 29f283f6db3..afdef66e809 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -476,7 +476,7 @@ uninstall:
476 fi ; \ 476 fi ; \
477 done 477 done
478 (cd ${archlibdir} && rm -f fns-*) 478 (cd ${archlibdir} && rm -f fns-*)
479 rm -rf ${libexecdir}/emacs/${version} 479 -rm -rf ${libexecdir}/emacs/${version}
480 (cd ${infodir} && rm -f cl* ada-mode* autotype* ccmode* ebrowse* efaq* eshell* eudc* idlwave* message* pcl-cvs* reftex* speedbar* widget* woman* dired-x* ediff* emacs* forms* gnus* info* mh-e* sc* vip*) 480 (cd ${infodir} && rm -f cl* ada-mode* autotype* ccmode* ebrowse* efaq* eshell* eudc* idlwave* message* pcl-cvs* reftex* speedbar* widget* woman* dired-x* ediff* emacs* forms* gnus* info* mh-e* sc* vip*)
481 (cd ${man1dir} && rm -f emacs.1 etags.1 ctags.1) 481 (cd ${man1dir} && rm -f emacs.1 etags.1 ctags.1)
482 (cd ${bindir} && rm -f emacs-${version} $(EMACS)) 482 (cd ${bindir} && rm -f emacs-${version} $(EMACS))