From ca16016c24781d8ec4422b5ecbe12f2148f6cf90 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Fri, 30 Jul 1999 12:06:48 +0000 Subject: [PATCH] (install): install *.el files too. to avoid warning about el is newer than elc, exec touch $(lispdir)/*.elc. --- lisp/Makefile.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/Makefile.in b/lisp/Makefile.in index ac6f233..e84fca1 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in @@ -28,10 +28,11 @@ clever some: install: clever rm -f dgnushack.elc $(SHELL) $(top_srcdir)/mkinstalldirs $(lispdir) - for p in *.elc; do \ + for p in *.el *.elc; do \ echo " $(INSTALL_DATA) $$p $(lispdir)/$$p"; \ $(INSTALL_DATA) $$p $(lispdir)/$$p; \ done + touch $(lispdir)/*.elc package: $(EMACS) $(FLAGS) -f dgnushack-make-package -- 1.7.10.4