[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/emacs-23 r99656: `make uninstall' fix (Bug#
From: |
Chong Yidong |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/emacs-23 r99656: `make uninstall' fix (Bug#5620). |
Date: |
Fri, 19 Mar 2010 11:27:49 -0400 |
User-agent: |
Bazaar (2.0.3) |
------------------------------------------------------------
revno: 99656
committer: Chong Yidong <address@hidden>
branch nick: emacs-23
timestamp: Fri 2010-03-19 11:27:49 -0400
message:
`make uninstall' fix (Bug#5620).
* Makefile.in (uninstall): Handle the case where archlibdir does
not exist. (Bug#5720)
modified:
lib-src/ChangeLog
lib-src/Makefile.in
=== modified file 'lib-src/ChangeLog'
--- a/lib-src/ChangeLog 2010-03-08 13:00:18 +0000
+++ b/lib-src/ChangeLog 2010-03-19 15:27:49 +0000
@@ -1,3 +1,8 @@
+2010-03-19 Tetsurou Okazaki <address@hidden> (tiny change)
+
+ * Makefile.in (uninstall): Handle the case where archlibdir does
+ not exist. (Bug#5720)
+
2010-02-20 Kevin Ryde <address@hidden>
* etags.c (Scheme_functions): Don't loop past a null character
=== modified file 'lib-src/Makefile.in'
--- a/lib-src/Makefile.in 2010-01-13 08:35:10 +0000
+++ b/lib-src/Makefile.in 2010-03-19 15:27:49 +0000
@@ -338,7 +338,7 @@
for file in ${INSTALLABLES} ${INSTALLABLE_SCRIPTS}; do \
rm -f $(DESTDIR)${bindir}/`echo $${file} | sed '$(TRANSFORM)'` ; \
done)
- (cd $(DESTDIR)${archlibdir}; \
+ (cd $(DESTDIR)${archlibdir} && \
rm -f ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS})
mostlyclean:
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/emacs-23 r99656: `make uninstall' fix (Bug#5620).,
Chong Yidong <=