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
This commit is contained in:
Chris Demetriou 2010-03-15 01:51:56 -07:00 committed by Chris Demetriou
parent f9fca45647
commit c8c520ddd5
2 changed files with 7 additions and 1 deletions

View File

@ -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

View File

@ -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/^[^;]*;//'`; \