From 87d78a81aafb64bfe7dcce348fafa3b7ee4d4c97 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Mon, 6 Nov 2000 08:01:27 +0000 Subject: [PATCH] (install): Don't check for the file names. --- ChangeLog | 4 ++++ lisp/Makefile.in | 12 +++++------- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index af8b174..82899c6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2000-11-06 Katsumi Yamaoka + + * lisp/Makefile.in (install): Don't check for the file names. + 2000-11-04 Hermit * lisp/gnus-topic.el (gnus-group-topic-map): Define "T" prefix diff --git a/lisp/Makefile.in b/lisp/Makefile.in index db894ac..29bc438 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in @@ -33,13 +33,11 @@ install: clever $(SHELL) $(top_srcdir)/mkinstalldirs $(lispdir) @for p in \ `$(EMACS) $(FLAGS) -f dgnushack-exported-files 2>/dev/null`; do \ - if test "$$p" != "dgnuspath.el" -a "$$p" != "ptexinfmt.el"; then \ - echo " $(INSTALL_DATA) $$p $(lispdir)/$$p"; \ - $(INSTALL_DATA) $$p $(lispdir)/$$p; \ - if test -f $$p"c"; then \ - echo " $(INSTALL_DATA) $$p""c"" $(lispdir)/$$p""c"; \ - $(INSTALL_DATA) $$p"c" $(lispdir)/$$p"c"; \ - fi; \ + echo " $(INSTALL_DATA) $$p $(lispdir)/$$p"; \ + $(INSTALL_DATA) $$p $(lispdir)/$$p; \ + if test -f $$p"c"; then \ + echo " $(INSTALL_DATA) $$p""c"" $(lispdir)/$$p""c"; \ + $(INSTALL_DATA) $$p"c" $(lispdir)/$$p"c"; \ fi; \ done -- 1.7.10.4