]> git.ipfire.org Git - thirdparty/git.git/commitdiff
DESTDIR support for git/contrib/emacs
authorVille Skyttä <scop@xemacs.org>
Thu, 5 Apr 2007 18:09:31 +0000 (21:09 +0300)
committerJunio 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>
contrib/emacs/Makefile

index 8554e3967cc692c6916e5aee35952074d07e8bf0..98aa0aae9b2e9e4a758fa58e7dd1e1adc3214883 100644 (file)
@@ -11,8 +11,8 @@ emacsdir = $(prefix)/share/emacs/site-lisp
 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 $<