aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1994-04-25 13:02:35 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1994-04-25 13:02:35 -0400
commit2fe8d2d69a0105c78b0c3d9e7e268e278fed988e (patch)
tree085e3df0a779f30883596d0d9525139d6abc6846
parent4b8a006289d16cd333d25cdc2a16d52086a531b5 (diff)
downloadgcc-2fe8d2d69a0105c78b0c3d9e7e268e278fed988e.zip
gcc-2fe8d2d69a0105c78b0c3d9e7e268e278fed988e.tar.gz
gcc-2fe8d2d69a0105c78b0c3d9e7e268e278fed988e.tar.bz2
(install-common): Install EXTRA_PARTS with INSTALL_DATA, not
INSTALL_PROGRAM. From-SVN: r7147
-rw-r--r--gcc/Makefile.in8
1 files changed, 7 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 867af4d..c9e5740 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; \