(install): Don't check for the file names.
authoryamaoka <yamaoka>
Mon, 6 Nov 2000 08:01:27 +0000 (08:01 +0000)
committeryamaoka <yamaoka>
Mon, 6 Nov 2000 08:01:27 +0000 (08:01 +0000)
ChangeLog
lisp/Makefile.in

index af8b174..82899c6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2000-11-06  Katsumi Yamaoka <yamaoka@jpl.org>
+
+       * lisp/Makefile.in (install): Don't check for the file names.
+
 2000-11-04  Hermit  <hermit@koka-in.org>
 
        * lisp/gnus-topic.el (gnus-group-topic-map): Define "T" prefix
index db894ac..29bc438 100644 (file)
@@ -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