diff options
-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 98c0ca98c..a99eff47c 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 889552d6e..8c19bbfaa 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 \ |