diff options
author | Mark Mitchell <mark@codesourcery.com> | 2004-12-22 17:22:59 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2004-12-22 17:22:59 +0000 |
commit | e90f1b9de770f194d1707c80afe7e75def07b873 (patch) | |
tree | 5c9f820ece812b89c10fd3af2d91bae81545e7a6 /gcc | |
parent | f199d860aec77c025228942b51e79d92d7ac8f4d (diff) | |
download | gcc-e90f1b9de770f194d1707c80afe7e75def07b873.zip gcc-e90f1b9de770f194d1707c80afe7e75def07b873.tar.gz gcc-e90f1b9de770f194d1707c80afe7e75def07b873.tar.bz2 |
Makefile.in (install-common): Remove special-case code for when SPECS is defined.
* Makefile.in (install-common): Remove special-case code for when
SPECS is defined.
From-SVN: r92489
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/Makefile.in | 16 |
2 files changed, 9 insertions, 12 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0ab0b2d..8569982 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-12-22 Mark Mitchell <mark@codesourcery.com> + + * Makefile.in (install-common): Remove special-case code for when + SPECS is defined. + 2004-12-22 Jan Beulich <jbeulich@novell.com> * config.gcc: Add dbxelf.h to NetWare's tm_file. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 84282c5..79b13fb 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3236,19 +3236,11 @@ install-common: native $(EXTRA_PARTS) lang.install-common installdirs chmod a-x $(DESTDIR)$(libsubdir)/$$file; \ else true; fi; \ done -# Remove any specs file installed by a previous version of GCC. +# We no longer install the specs file because its presence makes the +# driver slower, and because people who need it can recreate it by +# using -dumpspecs. We remove any old version because it would +# otherwise override the specs built into the driver. rm -f $(DESTDIR)$(libsubdir)/specs -ifneq ($(SPECS),specs) -# In general, we no longer install the specs file because its presence -# makes the driver slower, and because people who need it can recreate -# it by using -dumpspecs. -# -# However, in the case that the target has defined SPECS, then we must -# install the file. It may be that the installed specs file is -# different from that built into the driver. - $(INSTALL_DATA) $(SPECS) $(DESTDIR)$(libsubdir)/specs - chmod a-x $(DESTDIR)$(libsubdir)/specs -endif # Install protoize if it was compiled. -if [ -f protoize$(exeext) ]; then \ rm -f $(DESTDIR)$(bindir)/$(PROTOIZE_INSTALL_NAME)$(exeext); \ |