summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 957d6ea)
raw | patch | inline | side by side (parent: 957d6ea)
author | Ville Skyttä <scop@xemacs.org> | |
Thu, 5 Apr 2007 18:09:31 +0000 (21:09 +0300) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Thu, 5 Apr 2007 21:14:55 +0000 (14:14 -0700) |
make install DESTDIR=... support for git/contrib/emacs
Signed-off-by: Ville Skyttä <scop@xemacs.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Ville Skyttä <scop@xemacs.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
contrib/emacs/Makefile | patch | blob | history |
diff --git a/contrib/emacs/Makefile b/contrib/emacs/Makefile
index 8554e3967cc692c6916e5aee35952074d07e8bf0..98aa0aae9b2e9e4a758fa58e7dd1e1adc3214883 100644 (file)
--- a/contrib/emacs/Makefile
+++ b/contrib/emacs/Makefile
all: $(ELC)
install: all
- $(INSTALL) -d $(emacsdir)
- $(INSTALL_ELC) $(ELC) $(emacsdir)
+ $(INSTALL) -d $(DESTDIR)$(emacsdir)
+ $(INSTALL_ELC) $(ELC) $(DESTDIR)$(emacsdir)
%.elc: %.el
$(EMACS) -batch -f batch-byte-compile $<