diff options
author | Nathanael Nerode <neroden@gcc.gnu.org> | 2004-01-05 04:37:53 +0000 |
---|---|---|
committer | Nathanael Nerode <neroden@gcc.gnu.org> | 2004-01-05 04:37:53 +0000 |
commit | 2b6c260d73d6cb17d85c508a646b69240bcd1f28 (patch) | |
tree | 83a154125cf4bf9a94606c763c8c0dcee6a5213a | |
parent | d7b3c08535cd16614b3c69cc3a6a5c908beec97f (diff) | |
download | gcc-2b6c260d73d6cb17d85c508a646b69240bcd1f28.zip gcc-2b6c260d73d6cb17d85c508a646b69240bcd1f28.tar.gz gcc-2b6c260d73d6cb17d85c508a646b69240bcd1f28.tar.bz2 |
configure.in: Use ./config.cache, not config.cache.
* configure.in: Use ./config.cache, not config.cache.
* configure: Regenerate.
* Makefile.tpl: Special-casing not needed for GCC any more.
* Makefile.in: Regenerate.
From-SVN: r75413
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.in | 2 | ||||
-rw-r--r-- | Makefile.tpl | 2 | ||||
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | configure.in | 4 |
5 files changed, 11 insertions, 6 deletions
@@ -1,5 +1,10 @@ 2004-01-04 Nathanael Nerode <neroden@gcc.gnu.org> + * configure.in: Use ./config.cache, not config.cache. + * configure: Regenerate. + * Makefile.tpl: Special-casing not needed for GCC any more. + * Makefile.in: Regenerate. + * configure.in: Don't share a cache file for host dirs. * configure: Regenerate. diff --git a/Makefile.in b/Makefile.in index c8dad9c..51d9dd4 100644 --- a/Makefile.in +++ b/Makefile.in @@ -23612,7 +23612,7 @@ configure-gcc: libsrcdir="$$s/gcc";; \ esac; \ $(SHELL) $${libsrcdir}/configure \ - $(HOST_CONFIGARGS) $${srcdiroption} --cache-file=config.cache \ + $(HOST_CONFIGARGS) $${srcdiroption} \ || exit 1 # Don't 'make all' in gcc if it's already been made by 'bootstrap'; that diff --git a/Makefile.tpl b/Makefile.tpl index af5b291..7a7e3eb 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -1109,7 +1109,7 @@ configure-gcc: libsrcdir="$$s/gcc";; \ esac; \ $(SHELL) $${libsrcdir}/configure \ - $(HOST_CONFIGARGS) $${srcdiroption} --cache-file=config.cache \ + $(HOST_CONFIGARGS) $${srcdiroption} \ || exit 1 # Don't 'make all' in gcc if it's already been made by 'bootstrap'; that @@ -2590,7 +2590,7 @@ esac # Host dirs don't like to share a cache file either, horribly enough. # This seems to be due to autoconf 2.5x stupidity. -host_configargs="--cache-file=config.cache --build=${build_alias} --host=${host_alias} --target=${target_alias} ${extra_host_args} ${baseargs}" +host_configargs="--cache-file=./config.cache --build=${build_alias} --host=${host_alias} --target=${target_alias} ${extra_host_args} ${baseargs}" target_configargs=${baseargs} @@ -2624,7 +2624,7 @@ fi # directory. I think. # Pass the appropriate --host, --build, and --cache-file arguments. -target_configargs="--cache-file=config.cache --host=${target_alias} --build=${build_alias} ${target_configargs}" +target_configargs="--cache-file=./config.cache --host=${target_alias} --build=${build_alias} ${target_configargs}" # provide a proper gxx_include_dir. # Note, if you change the default, make sure to fix both here and in diff --git a/configure.in b/configure.in index c84f1a62..b286f1a 100644 --- a/configure.in +++ b/configure.in @@ -1828,7 +1828,7 @@ esac # Host dirs don't like to share a cache file either, horribly enough. # This seems to be due to autoconf 2.5x stupidity. -host_configargs="--cache-file=config.cache --build=${build_alias} --host=${host_alias} --target=${target_alias} ${extra_host_args} ${baseargs}" +host_configargs="--cache-file=./config.cache --build=${build_alias} --host=${host_alias} --target=${target_alias} ${extra_host_args} ${baseargs}" target_configargs=${baseargs} @@ -1862,7 +1862,7 @@ fi # directory. I think. # Pass the appropriate --host, --build, and --cache-file arguments. -target_configargs="--cache-file=config.cache --host=${target_alias} --build=${build_alias} ${target_configargs}" +target_configargs="--cache-file=./config.cache --host=${target_alias} --build=${build_alias} ${target_configargs}" # provide a proper gxx_include_dir. # Note, if you change the default, make sure to fix both here and in |