From: Hideki Yamane Date: Mon, 3 Nov 2014 10:56:06 +0000 (+0900) Subject: Respect $(DESTDIR) when installing elc files X-Git-Url: http://cgit.sxemacs.org/?p=riece;a=commitdiff_plain;h=86c03d1518910e0497a4b23e30106660e2673878 Respect $(DESTDIR) when installing elc files * Makefile.am (install, uninstall): Prefix $(DESTDIR) to the installation directory. --- diff --git a/lisp/Makefile.am b/lisp/Makefile.am index b8e4099..d62c43d 100644 --- a/lisp/Makefile.am +++ b/lisp/Makefile.am @@ -39,11 +39,11 @@ elc: install: elc $(EMACS) $(FLAGS) -l $(srcdir)/COMPILE -f riece-install \ - $(srcdir) $(lispdir) # $(MAKE) + $(srcdir) $(DESTDIR)/$(lispdir) # $(MAKE) uninstall: $(EMACS) $(FLAGS) -l $(srcdir)/COMPILE -f riece-uninstall \ - $(lispdir) + $(DESTDIR)/$(lispdir) package: $(XEMACS) $(FLAGS) -l $(srcdir)/COMPILE -f riece-compile-package \