diff options
author | Nathanael Nerode <neroden@gcc.gnu.org> | 2002-12-05 18:34:48 +0000 |
---|---|---|
committer | Nathanael Nerode <neroden@gcc.gnu.org> | 2002-12-05 18:34:48 +0000 |
commit | c8431c14ae7cc10eaeee983fa27a70b8145423f9 (patch) | |
tree | ca7a9668ab9d7f9a735d93678fd92b407f2d79bc /configure.in | |
parent | c68e89defda45e7d15cd29d4b9e0b4fb38b81cfe (diff) | |
download | gdb-c8431c14ae7cc10eaeee983fa27a70b8145423f9.tar.gz |
2002-12-05 Nathanael Nerode <neroden@gcc.gnu.org>
* Makefile.tpl: Change dependency for */multilib.out so that
it works when gcc isn't in the tree.
* configure.in: Substitute more.
* configure: Run subconfigures from the Makefile.
* Makefile.tpl: Run subconfigures from the Makefile; add a few
convenience targets. Make sure gcc isn't rebuilt after bootstrap.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.in b/configure.in index f1382eefaa6..84effb64776 100644 --- a/configure.in +++ b/configure.in @@ -202,7 +202,7 @@ esac # Some tools are only suitable for building in a "native" situation. # Remove these if host!=target. -native_only="autoconf automake libtool fileutils find gawk gettext grep gzip hello indent m4 rcs recode sed shellutils tar textutils uudecode wdiff gprof target-groff guile perl time ash bash bzip2 prms snavigator gnuserv target-gperf" +native_only="autoconf automake libtool fileutils find gawk gettext grep gzip hello indent m4 rcs recode sed shellutils tar textutils uudecode wdiff gprof target-groff guile perl time ash bash bzip2 prms snavigator gnuserv target-gperf target-rda" # Similarly, some are only suitable for cross toolchains. # Remove these if host=target. @@ -1706,12 +1706,14 @@ BASE_CC_FOR_TARGET=`echo "$cc_for_target_first_word" | sed -e 's,[$][$]r,.,'` sedtemp=sed.$$ cat >$sedtemp <<EOF s%@GDB_TK@%${GDB_TK}% -s%@all_build_modules@%${all_build_modules}% s%@configure_build_modules@%${configure_build_modules}% +s%@all_build_modules@%${all_build_modules}% +s%@configure_host_modules@%${configure_host_modules}% s%@all_host_modules@%${all_host_modules}% s%@check_host_modules@%${check_host_modules}% s%@install_host_modules@%${install_host_modules}% s%@install_host_modules_nogcc@%${install_host_modules_nogcc}% +s%@configure_target_modules@%${configure_target_modules}% s%@all_target_modules@%${all_target_modules}% s%@check_target_modules@%${check_target_modules}% s%@install_target_modules@%${install_target_modules}% |