Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/gnu/dist/gcc4/gcc Don't install stddef.h and friends, they d...



details:   https://anonhg.NetBSD.org/src/rev/6235a9821703
branches:  trunk
changeset: 763543:6235a9821703
user:      joerg <joerg%NetBSD.org@localhost>
date:      Thu Mar 24 13:31:30 2011 +0000

description:
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:

 gnu/dist/gcc4/gcc/Makefile.in |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (27 lines):

diff -r 0bda77621038 -r 6235a9821703 gnu/dist/gcc4/gcc/Makefile.in
--- a/gnu/dist/gcc4/gcc/Makefile.in     Thu Mar 24 12:40:59 2011 +0000
+++ b/gnu/dist/gcc4/gcc/Makefile.in     Thu Mar 24 13:31:30 2011 +0000
@@ -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



Home | Main Index | Thread Index | Old Index