diff options
author | David Kastrup <dak@gnu.org> | 2007-07-15 11:46:11 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-07-15 20:21:51 -0700 |
commit | 99c01de402b543647a6500ceeaca7f62e343b144 (patch) | |
tree | 93ab18fee28ca92d8a0824d40a63c65adf0191d0 /contrib | |
parent | 9dfdf14b3805e89aa2782458bda15b3dfae24c09 (diff) | |
download | git-99c01de402b543647a6500ceeaca7f62e343b144.tar.gz git-99c01de402b543647a6500ceeaca7f62e343b144.tar.xz |
contrib/emacs/Makefile: Also install .el files.
Signed-off-by: David Kastrup <dak@gnu.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/emacs/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/emacs/Makefile b/contrib/emacs/Makefile index 5e94d6fcd..a48540a92 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 $< |