summaryrefslogtreecommitdiff
path: root/lib-src
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2010-03-19 11:27:49 -0400
committerChong Yidong <cyd@stupidchicken.com>2010-03-19 11:27:49 -0400
commita40624fe60fd778ddf3d6480c2692f591c21ba5d (patch)
tree651fc6cdd4a1b3c04b887a22b72d4cd4bf017f18 /lib-src
parent2188e684ed58c4de2eee4ec9e4dec6bebf28010d (diff)
downloademacs-a40624fe60fd778ddf3d6480c2692f591c21ba5d.tar.gz
`make uninstall' fix (Bug#5620).
* Makefile.in (uninstall): Handle the case where archlibdir does not exist. (Bug#5720)
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog5
-rw-r--r--lib-src/Makefile.in2
2 files changed, 6 insertions, 1 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index 77b227cd638..caa7f3cfc80 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,8 @@
+2010-03-19 Tetsurou Okazaki <okazaki@be.to> (tiny change)
+
+ * Makefile.in (uninstall): Handle the case where archlibdir does
+ not exist. (Bug#5720)
+
2010-02-20 Kevin Ryde <user42@zip.com.au>
* etags.c (Scheme_functions): Don't loop past a null character
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in
index b1344c8b010..0353c4412fb 100644
--- a/lib-src/Makefile.in
+++ b/lib-src/Makefile.in
@@ -338,7 +338,7 @@ uninstall:
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: