diff options
author | neroden <neroden@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-22 08:38:04 +0000 |
---|---|---|
committer | neroden <neroden@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-22 08:38:04 +0000 |
commit | aff6cf7b52dcc8aca45c493c795cd92b054052f8 (patch) | |
tree | 1c556dcbbcb3585452c3995d226ab8f65f7de88f /configure | |
parent | 86ad20f60436eca44c5c862a8dd44f8e83981413 (diff) | |
download | gcc-aff6cf7b52dcc8aca45c493c795cd92b054052f8.tar.gz |
* Makefile.tpl (experimental top level bootstrap) Move stage1
language setting from all- target to configure- target; disable
intermodule optimization in stage 1; prevent gratuitous rebuilds
of stage 1.
* Makefile.in: Regenerate.
* configure.in: Comma-separate stage 1 language list for top
level bootstrap.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79816 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure index fc897117ef3..a884c3281bf 100755 --- a/configure +++ b/configure @@ -2283,8 +2283,8 @@ if test -d ${srcdir}/gcc; then missing_languages=`echo "$missing_languages" | sed "s/,$language,/,/"` case ${boot_language} in yes) - # Add to (space-separated) list of stage 1 languages. - stage1_languages="${stage1_languages} ${language}" + # Add to (comma-separated) list of stage 1 languages. + stage1_languages="${stage1_languages},${language}" ;; esac ;; |