mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
`make uninstall' fix (Bug#5620).
* Makefile.in (uninstall): Handle the case where archlibdir does not exist. (Bug#5720)
This commit is contained in:
parent
def98666d8
commit
8eae7a421b
2 changed files with 6 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue