summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Kastrup <dak@gnu.org>2007-07-15 09:46:11 (GMT)
committerJunio C Hamano <gitster@pobox.com>2007-07-16 03:21:51 (GMT)
commit99c01de402b543647a6500ceeaca7f62e343b144 (patch)
tree93ab18fee28ca92d8a0824d40a63c65adf0191d0
parent9dfdf14b3805e89aa2782458bda15b3dfae24c09 (diff)
downloadgit-99c01de402b543647a6500ceeaca7f62e343b144.zip
git-99c01de402b543647a6500ceeaca7f62e343b144.tar.gz
git-99c01de402b543647a6500ceeaca7f62e343b144.tar.bz2
contrib/emacs/Makefile: Also install .el files.
Signed-off-by: David Kastrup <dak@gnu.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--contrib/emacs/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/emacs/Makefile b/contrib/emacs/Makefile
index 5e94d6f..a48540a 100644
--- a/contrib/emacs/Makefile
+++ b/contrib/emacs/Makefile
@@ -13,7 +13,7 @@ all: $(ELC)
install: all
$(INSTALL) -d $(DESTDIR)$(emacsdir)
- $(INSTALL_ELC) $(ELC) $(DESTDIR)$(emacsdir)
+ $(INSTALL_ELC) $(ELC:.elc=.el) $(ELC) $(DESTDIR)$(emacsdir)
%.elc: %.el
$(EMACS) -batch -f batch-byte-compile $<