(install-common): Install EXTRA_PARTS with INSTALL_DATA, not
authorRichard Kenner <kenner@gcc.gnu.org>
Mon, 25 Apr 1994 17:02:35 +0000 (13:02 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Mon, 25 Apr 1994 17:02:35 +0000 (13:02 -0400)
INSTALL_PROGRAM.

From-SVN: r7147

gcc/Makefile.in

index 867af4de21b5a2e25f7472b434458f7cd3688530..c9e5740793562815d661d33956e8eb5404354a1a 100644 (file)
@@ -1822,12 +1822,18 @@ install-common: native install-dir xgcc $(EXTRA_PARTS) lang.install-common
          else true; \
          fi; \
        done
-       for file in $(EXTRA_PASSES) $(EXTRA_PARTS) $(EXTRA_PROGRAMS) $(USE_COLLECT2) ..; do \
+       for file in $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2) ..; do \
          if [ x"$$file" != x.. ]; then \
            rm -f $(libsubdir)/$$file; \
            $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
          else true; fi; \
        done
+       for file in $(EXTRA_PARTS) ..; do \
+         if [ x"$$file" != x.. ]; then \
+           rm -f $(libsubdir)/$$file; \
+           $(INSTALL_DATA) $$file $(libsubdir)/$$file; \
+         else true; fi; \
+       done
 # Don't mess with specs if it doesn't exist yet.
        -if [ -f specs ] ; then \
          rm -f $(libsubdir)/specs; \