diff options
author | Nathanael Nerode <neroden@gcc.gnu.org> | 2003-03-12 20:41:00 +0000 |
---|---|---|
committer | Nathanael Nerode <neroden@gcc.gnu.org> | 2003-03-12 20:41:00 +0000 |
commit | 73458fb75948cbc4ce7eadeff9c9380cb96532ae (patch) | |
tree | 06db231a24516a0143445c42968cb4ac7601095e /Makefile.tpl | |
parent | 00530a212ba678acf2f0719789f53865c8cd7e71 (diff) | |
download | gcc-73458fb75948cbc4ce7eadeff9c9380cb96532ae.zip gcc-73458fb75948cbc4ce7eadeff9c9380cb96532ae.tar.gz gcc-73458fb75948cbc4ce7eadeff9c9380cb96532ae.tar.bz2 |
Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES up.
(toplev)
* Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES up. Delete unused
Make macro.
* Makefile.in: Regenerate.
* configure.in: Clean up gxx_include_dir logic.
* configure: Regenerate.
(gcc)
* Makefile.in: Eliminate all.indirect. Update and clean up comments.
Rearrange. Reorganize.
* configure.in: Rearrange.
* configure: Regenerate.
From-SVN: r64260
Diffstat (limited to 'Makefile.tpl')
-rw-r--r-- | Makefile.tpl | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Makefile.tpl b/Makefile.tpl index 0b24dd0..ab37bdf 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -23,6 +23,10 @@ in # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # +# Don't pass command-line variables to submakes. +.NOEXPORT: +MAKEOVERRIDES= + # ------------------------------- # Standard Autoconf-set variables # ------------------------------- @@ -87,7 +91,6 @@ INSTALL_DATA = $(INSTALL) -m 644 # ------------------------------------------------- links=@configlinks@ -enable_version_specific_runtime_libs = @enable_version_specific_runtime_libs@ # The file containing GCC's version number. gcc_version_trigger = @gcc_version_trigger@ gcc_version = @gcc_version@ @@ -1450,10 +1453,6 @@ config.status: configure $(gcc_version_trigger) AUTOCONF = autoconf $(srcdir)/configure: @MAINT@ $(srcdir)/configure.in $(srcdir)/config/acx.m4 cd $(srcdir) && $(AUTOCONF) -# - -.NOEXPORT: -MAKEOVERRIDES= # Tell GNU make 3.79 not to run the top level in parallel. This # prevents contention for $builddir/$target/config.cache, as well |