diff options
author | Chris Demetriou <cgd@google.com> | 2010-03-15 01:51:56 -0700 |
---|---|---|
committer | Chris Demetriou <cgd@gcc.gnu.org> | 2010-03-15 01:51:56 -0700 |
commit | c8c520ddd5ee086b8ce4a399c4c9ccd7c53b21be (patch) | |
tree | 433cad9835d06e57d150560fe83d9828f5e596b5 /gcc | |
parent | f9fca456478b0067364b7ec788dec4bc2d2f89bf (diff) | |
download | gcc-c8c520ddd5ee086b8ce4a399c4c9ccd7c53b21be.zip gcc-c8c520ddd5ee086b8ce4a399c4c9ccd7c53b21be.tar.gz gcc-c8c520ddd5ee086b8ce4a399c4c9ccd7c53b21be.tar.bz2 |
Makefile.in (stmp-int-hdrs): Don't chmod include/stdint.h if it wasn't copied.
2010-03-15 Chris Demetriou <cgd@google.com>
* Makefile.in (stmp-int-hdrs): Don't chmod include/stdint.h if it
wasn't copied.
From-SVN: r157454
Diffstat (limited to 'gcc')
-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 866ad6d..437c606 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-03-15 Chris Demetriou <cgd@google.com> + + * Makefile.in (stmp-int-hdrs): Don't chmod include/stdint.h if it + wasn't copied. + 2010-03-13 Sebastian Pop <sebastian.pop@amd.com> PR middle-end/43354 diff --git a/gcc/Makefile.in b/gcc/Makefile.in index fd61169..9a9ca45 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -3842,10 +3842,11 @@ stmp-int-hdrs: $(STMP_FIXINC) $(USER_H) $(UNWIND_H) fixinc_list cp $(srcdir)/ginclude/stdint-gcc.h include/stdint-gcc.h; \ chmod a+r include/stdint-gcc.h; \ cp $(srcdir)/ginclude/stdint-wrap.h include/stdint.h; \ + chmod a+r include/stdint.h; \ elif [ $(USE_GCC_STDINT) = provide ]; then \ cp $(srcdir)/ginclude/stdint-gcc.h include/stdint.h; \ + chmod a+r include/stdint.h; \ fi - chmod a+r include/stdint.h set -e; for ml in `cat fixinc_list`; do \ sysroot_headers_suffix=`echo $${ml} | sed -e 's/;.*$$//'`; \ multi_dir=`echo $${ml} | sed -e 's/^[^;]*;//'`; \ |