diff options
author | Paolo Bonzini <bonzini@gnu.org> | 2005-10-05 15:59:52 +0000 |
---|---|---|
committer | Paolo Bonzini <bonzini@gnu.org> | 2005-10-05 15:59:52 +0000 |
commit | cc96343e4c3fd44d5e35d370ec3f0a489cee9e66 (patch) | |
tree | 89c46fbf85ce43552f8be76a3135e9e103d3b6d4 | |
parent | e60cc41502a4f1e00e70af0d3e2ceaca1ec6e15a (diff) | |
download | gdb-cc96343e4c3fd44d5e35d370ec3f0a489cee9e66.zip gdb-cc96343e4c3fd44d5e35d370ec3f0a489cee9e66.tar.gz gdb-cc96343e4c3fd44d5e35d370ec3f0a489cee9e66.tar.bz2 |
2005-10-05 Paolo Bonzini <bonzini@gnu.org>
* Makefile.tpl (all) [gcc-no-bootstrap]: Make prebootstrap packages
before other host packages.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.in | 5 | ||||
-rw-r--r-- | Makefile.tpl | 5 |
3 files changed, 15 insertions, 0 deletions
@@ -1,5 +1,10 @@ 2005-10-05 Paolo Bonzini <bonzini@gnu.org> + * Makefile.tpl (all) [gcc-no-bootstrap]: Make prebootstrap packages + before other host packages. + +2005-10-05 Paolo Bonzini <bonzini@gnu.org> + PR bootstrap/22340 * configure.in (default_target): Remove. diff --git a/Makefile.in b/Makefile.in index 98c0ca9..a99eff4 100644 --- a/Makefile.in +++ b/Makefile.in @@ -856,6 +856,11 @@ all: fi @endif gcc-bootstrap @$(unstage) +@if gcc-no-bootstrap + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(MAKE) $(RECURSE_FLAGS_TO_PASS) all-prebootstrap +@endif gcc-no-bootstrap @r=`${PWD_COMMAND}`; export r; \ s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ if [ -f stage_last ]; then \ diff --git a/Makefile.tpl b/Makefile.tpl index 889552d..8c19bbf 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -709,6 +709,11 @@ all: fi @endif gcc-bootstrap @$(unstage) +@if gcc-no-bootstrap + @r=`${PWD_COMMAND}`; export r; \ + s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ + $(MAKE) $(RECURSE_FLAGS_TO_PASS) all-prebootstrap +@endif gcc-no-bootstrap @r=`${PWD_COMMAND}`; export r; \ s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \ if [ -f stage_last ]; then \ |