From 86c03d1518910e0497a4b23e30106660e2673878 Mon Sep 17 00:00:00 2001 From: Hideki Yamane Date: Mon, 3 Nov 2014 19:56:06 +0900 Subject: [PATCH] Respect $(DESTDIR) when installing elc files * Makefile.am (install, uninstall): Prefix $(DESTDIR) to the installation directory. --- lisp/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 \ -- 2.25.1