From: yamaoka Date: Mon, 6 Nov 2000 08:01:27 +0000 (+0000) Subject: (install): Don't check for the file names. X-Git-Tag: t-gnus-6_14-quimby-before-installer-changed-~10 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=87d78a81aafb64bfe7dcce348fafa3b7ee4d4c97;p=elisp%2Fgnus.git- (install): Don't check for the file names. --- 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