summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>2005-10-20 11:54:41 +0000
committerebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>2005-10-20 11:54:41 +0000
commitbde482178444de3bbc8712d7f93ed21e496c0c69 (patch)
tree7f0de8e7485cc5212f937cf5466efd2a99c962a1
parentab784d0b858991f4898623d127972b8736881286 (diff)
downloadgcc-bde482178444de3bbc8712d7f93ed21e496c0c69.tar.gz
PR bootstrap/18939
* Makefile.def (gcc) <target>: Fix thinko. * Makefile.in: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@105669 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--ChangeLog6
-rw-r--r--Makefile.def2
-rw-r--r--Makefile.in2
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index d19c3c04fa4..c1f3af13595 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-10-20 Eric Botcazou <ebotcazou@adacore.com>
+
+ PR bootstrap/18939
+ * Makefile.def (gcc) <target>: Fix thinko.
+ * Makefile.in: Regenerate.
+
2005-10-17 Bernd Schmidt <bernd.schmidt@analog.com>
* configure.in (bfin-*-*): Use test, not brackets, in if statement.
diff --git a/Makefile.def b/Makefile.def
index 9731bd66f57..035def58c52 100644
--- a/Makefile.def
+++ b/Makefile.def
@@ -60,7 +60,7 @@ host_modules= { module= fixincludes;
host_modules= { module= flex; no_check_cross= true; };
host_modules= { module= gas; bootstrap=true; };
host_modules= { module= gcc; bootstrap=true;
- target="`if [ -f gcc/stage_last ]; then echo quickstrap ; else echo all; fi`";
+ target="`if [ -f stage_last ]; then echo quickstrap ; else echo all; fi`";
extra_make_flags="$(EXTRA_GCC_FLAGS)"; };
host_modules= { module= gawk; };
host_modules= { module= gettext; };
diff --git a/Makefile.in b/Makefile.in
index 0de1a3c7a23..22333c05cf9 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -11248,7 +11248,7 @@ configure-stagefeedback-gcc:
.PHONY: all-gcc maybe-all-gcc
maybe-all-gcc:
@if gcc
-TARGET-gcc=`if [ -f gcc/stage_last ]; then echo quickstrap ; else echo all; fi`
+TARGET-gcc=`if [ -f stage_last ]; then echo quickstrap ; else echo all; fi`
maybe-all-gcc: all-gcc
all-gcc: configure-gcc
@test -f stage_last && exit 0; \