From 2fe8d2d69a0105c78b0c3d9e7e268e278fed988e Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Mon, 25 Apr 1994 13:02:35 -0400 Subject: [PATCH] (install-common): Install EXTRA_PARTS with INSTALL_DATA, not INSTALL_PROGRAM. From-SVN: r7147 --- gcc/Makefile.in | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 867af4de21b..c9e57407935 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -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; \ -- 2.30.2