aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/Makefile.in3
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 62fb710..e0dfa8e 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2004-09-06 H.J. Lu <hongjiu.lu@intel.com>
+
+ PR bootstrap/17313
+ * Makefile.in (specs.ready): Depend on cc1$(exeext).
+
2004-09-06 James E Wilson <wilson@specifixinc.com>
* config/mips/mips.md (movsf_hardfloat, movdf_hardfloat_64bit,
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index cb222d9..dea566e 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -2795,7 +2795,8 @@ stmp-int-hdrs: $(STMP_FIXINC) $(USER_H) xlimits.h
# fixinc.sh depends on this, not on specs directly.
# The idea is to make sure specs gets built, but not rerun fixinc.sh
# after each stage just because specs' mtime has changed.
-specs.ready: specs
+# It also depends on cc1 since fixinc.sh uses it.
+specs.ready: specs cc1$(exeext)
-if [ -f specs.ready ] ; then \
true; \
else \