diff options
author | Nathanael Nerode <neroden@gcc.gnu.org> | 2003-03-14 20:49:14 +0000 |
---|---|---|
committer | Nathanael Nerode <neroden@gcc.gnu.org> | 2003-03-14 20:49:14 +0000 |
commit | 3728fadeb89342b5b64021df37a64c493c34d052 (patch) | |
tree | 473897d58e08ef73794e11e059a8e8a8227ecdcf /Makefile.tpl | |
parent | 055bb976b5ce73d1fa2fc0d2aba65ac158abe60b (diff) | |
download | gdb-3728fadeb89342b5b64021df37a64c493c34d052.zip gdb-3728fadeb89342b5b64021df37a64c493c34d052.tar.gz gdb-3728fadeb89342b5b64021df37a64c493c34d052.tar.bz2 |
* Makefile.tpl: Move .NOEXPORT, MAKEOVERRIDES back down.
* Makefile.in: Regenerate.
Diffstat (limited to 'Makefile.tpl')
-rw-r--r-- | Makefile.tpl | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Makefile.tpl b/Makefile.tpl index ab37bdf..72e2498 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -23,10 +23,6 @@ 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 # ------------------------------- @@ -1454,10 +1450,18 @@ AUTOCONF = autoconf $(srcdir)/configure: @MAINT@ $(srcdir)/configure.in $(srcdir)/config/acx.m4 cd $(srcdir) && $(AUTOCONF) +# ------------------------------ +# Special directives to GNU Make +# ------------------------------ + # Tell GNU make 3.79 not to run the top level in parallel. This # prevents contention for $builddir/$target/config.cache, as well # as minimizing scatter in file system caches. NOTPARALLEL = .NOTPARALLEL $(NOTPARALLEL): +# Don't pass command-line variables to submakes. +.NOEXPORT: +MAKEOVERRIDES= + # end of Makefile.in |