diff options
| author | Chong Yidong | 2010-03-19 11:27:49 -0400 |
|---|---|---|
| committer | Chong Yidong | 2010-03-19 11:27:49 -0400 |
| commit | 8eae7a421b7c6a2bd010e9f9f580febe04373ccd (patch) | |
| tree | d3131b6b42ae5930171071be597e0f80fdd29f99 /lib-src | |
| parent | def98666d883a9c5e7bf8066525aedf916ca7fca (diff) | |
| download | emacs-8eae7a421b7c6a2bd010e9f9f580febe04373ccd.tar.gz emacs-8eae7a421b7c6a2bd010e9f9f580febe04373ccd.zip | |
`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/ChangeLog | 5 | ||||
| -rw-r--r-- | lib-src/Makefile.in | 2 |
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 @@ | |||
| 1 | 2010-03-19 Tetsurou Okazaki <okazaki@be.to> (tiny change) | ||
| 2 | |||
| 3 | * Makefile.in (uninstall): Handle the case where archlibdir does | ||
| 4 | not exist. (Bug#5720) | ||
| 5 | |||
| 1 | 2010-02-20 Kevin Ryde <user42@zip.com.au> | 6 | 2010-02-20 Kevin Ryde <user42@zip.com.au> |
| 2 | 7 | ||
| 3 | * etags.c (Scheme_functions): Don't loop past a null character | 8 | * 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: | |||
| 338 | for file in ${INSTALLABLES} ${INSTALLABLE_SCRIPTS}; do \ | 338 | for file in ${INSTALLABLES} ${INSTALLABLE_SCRIPTS}; do \ |
| 339 | rm -f $(DESTDIR)${bindir}/`echo $${file} | sed '$(TRANSFORM)'` ; \ | 339 | rm -f $(DESTDIR)${bindir}/`echo $${file} | sed '$(TRANSFORM)'` ; \ |
| 340 | done) | 340 | done) |
| 341 | (cd $(DESTDIR)${archlibdir}; \ | 341 | (cd $(DESTDIR)${archlibdir} && \ |
| 342 | rm -f ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS}) | 342 | rm -f ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS}) |
| 343 | 343 | ||
| 344 | mostlyclean: | 344 | mostlyclean: |