From: Chris Demetriou Date: Mon, 15 Mar 2010 08:51:56 +0000 (-0700) Subject: Makefile.in (stmp-int-hdrs): Don't chmod include/stdint.h if it wasn't copied. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c8c520ddd5ee086b8ce4a399c4c9ccd7c53b21be;p=gcc.git Makefile.in (stmp-int-hdrs): Don't chmod include/stdint.h if it wasn't copied. 2010-03-15 Chris Demetriou * Makefile.in (stmp-int-hdrs): Don't chmod include/stdint.h if it wasn't copied. From-SVN: r157454 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 866ad6dee3b..437c6061a80 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-03-15 Chris Demetriou + + * Makefile.in (stmp-int-hdrs): Don't chmod include/stdint.h if it + wasn't copied. + 2010-03-13 Sebastian Pop PR middle-end/43354 diff --git a/gcc/Makefile.in b/gcc/Makefile.in index fd61169a6e2..9a9ca45b324 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/^[^;]*;//'`; \