diff options
author | Joseph Myers <joseph@codesourcery.com> | 2006-03-03 00:31:38 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2006-03-03 00:31:38 +0000 |
commit | 778f0e89180557c7817da8cbb4876dd1ceb18888 (patch) | |
tree | f38fe7d00ac79d5dfbab7041d2bf5504f2ca4bd4 | |
parent | ee8285934aab5a60d0e9a521a62dbe27e7437f2f (diff) | |
download | gcc-778f0e89180557c7817da8cbb4876dd1ceb18888.zip gcc-778f0e89180557c7817da8cbb4876dd1ceb18888.tar.gz gcc-778f0e89180557c7817da8cbb4876dd1ceb18888.tar.bz2 |
re PR bootstrap/26478 (bootstrap fails with readonly source directory)
PR bootstrap/26478
* Makefile.in (stmp-int-hdrs): Remove include/unwind.h before
copying over it.
From-SVN: r111662
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/Makefile.in | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5c933ac..8a226e6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2006-03-03 Joseph S. Myers <joseph@codesourcery.com> + + PR bootstrap/26478 + * Makefile.in (stmp-int-hdrs): Remove include/unwind.h before + copying over it. + 2006-03-02 Zdenek Dvorak <dvorakz@suse.cz> * tree-vrp.c (remove_range_assertions): Do not update statements unnecessarily. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index d92e3dc..f567223 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3143,6 +3143,7 @@ stmp-int-hdrs: $(STMP_FIXINC) $(USER_H) xlimits.h $(UNWIND_H) done rm -f include/limits.h cp xlimits.h include/limits.h + rm -f include/unwind.h cp $(UNWIND_H) include/unwind.h chmod a+r include/limits.h # Install the README |