summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorjoerg <joerg@NetBSD.org>2011-03-24 13:31:30 +0000
committerjoerg <joerg@NetBSD.org>2011-03-24 13:31:30 +0000
commitfa17b3ede1faae84e8bbc0328890c2fd3099e201 (patch)
treef734d5d3d40757fda396bba751b89e36b0a816a7 /gnu
parentfe5d5af6982194501137807a1ce10e2b58730c2b (diff)
Don't install stddef.h and friends, they don't work as intended without
patching. Since our own versions are fine, don't bother.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/dist/gcc4/gcc/Makefile.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/dist/gcc4/gcc/Makefile.in b/gnu/dist/gcc4/gcc/Makefile.in
index 085990a3ebc..a06ca94feff 100644
--- a/gnu/dist/gcc4/gcc/Makefile.in
+++ b/gnu/dist/gcc4/gcc/Makefile.in
@@ -3138,7 +3138,7 @@ stmp-int-hdrs: $(STMP_FIXINC) $(USER_H) xlimits.h $(UNWIND_H)
# 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 @@ stmp-int-hdrs: $(STMP_FIXINC) $(USER_H) xlimits.h $(UNWIND_H)
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