diff options
| author | hjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-06 23:58:14 +0000 |
|---|---|---|
| committer | hjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-06 23:58:14 +0000 |
| commit | da744101ab2cc90cf96bce1827c69d1b6094aa19 (patch) | |
| tree | 362309eebba7537675eaa3a7ac72bc93bbf41a20 | |
| parent | b848a04b12ce003b2832eb3172948261d35bfbfa (diff) | |
| download | ppe42-gcc-da744101ab2cc90cf96bce1827c69d1b6094aa19.tar.gz ppe42-gcc-da744101ab2cc90cf96bce1827c69d1b6094aa19.zip | |
2004-09-06 H.J. Lu <hongjiu.lu@intel.com>
PR bootstrap/17313
* Makefile.in (specs.ready): Depend on cc1$(exeext).
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87133 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/Makefile.in | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 62fb710a9ad..e0dfa8e4604 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 cb222d99b73..dea566ed285 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 \ |

