Module Name: src
Committed By: joerg
Date: Thu Mar 24 13:31:31 UTC 2011
Modified Files:
src/gnu/dist/gcc4/gcc: Makefile.in
Log Message:
Don't install stddef.h and friends, they don't work as intended without
patching. Since our own versions are fine, don't bother.
To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/gnu/dist/gcc4/gcc/Makefile.in
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/gnu/dist/gcc4/gcc/Makefile.in
diff -u src/gnu/dist/gcc4/gcc/Makefile.in:1.8 src/gnu/dist/gcc4/gcc/Makefile.in:1.9
--- src/gnu/dist/gcc4/gcc/Makefile.in:1.8 Tue Aug 12 10:09:31 2008
+++ src/gnu/dist/gcc4/gcc/Makefile.in Thu Mar 24 13:31:30 2011
@@ -3138,7 +3138,7 @@
# Using basename would be simpler, but some systems don't have it.
# The touch command is here to workaround an AIX/Linux NFS bug.
-if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi
- for file in .. $(USER_H); do \
+ if false; then for file in .. $(USER_H); do \
if [ X$$file != X.. ]; then \
realfile=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
$(STAMP) include/$$realfile; \
@@ -3146,11 +3146,11 @@
cp $$file include; \
chmod a+r include/$$realfile; \
fi; \
- done
- rm -f include/limits.h
+ done; \
+ rm -f include/limits.h; \
+ chmod a+r include/limits.h; fi
cp xlimits.h include/limits.h
cp $(UNWIND_H) include/unwind.h
- chmod a+r include/limits.h
# Install the README
rm -f include/README
cp $(srcdir)/../fixincludes/README-fixinc include/README