Annotation of gcc/just-fixinc, revision 1.1.1.3

1.1       root        1: #!/bin/sh
1.1.1.3 ! root        2: # $Id: just-fixinc,v 1.5 1994/08/16 20:42:48 friedman Exp $
1.1       root        3: # This script exists for use after installing
1.1.1.3 ! root        4: # the GCC binaries from a distribution tape/CD-ROM.
1.1       root        5: # Use it *after* copying the directory of binaries
                      6: # to the proper installed location.
1.1.1.3 ! root        7: # It runs fixincludes (or fixinc.svr4, if appropriate) to correct bugs in
        !             8: # the system header files.
        !             9: # This script needs to be customized for each type of installation so that
        !            10: # others may run it after the installation-sans-fixincludes is completed.
1.1       root       11: 
                     12: # The corrected header files go in the GCC installation directory
                     13: # so that only GCC sees them.
                     14: # This script does not modify the original header files in /usr/include.
                     15: # It only modifies copies in the GCC installation directory.
                     16: 
1.1.1.3 ! root       17: installed=/opt/gnu/lib/gcc-lib/sparc-sun-solaris2/2.6.0
1.1       root       18: cd $installed/include
1.1.1.2   root       19: 
1.1       root       20: rmdir tmpfoo > /dev/null 2>&1
                     21: mkdir tmpfoo
                     22: mv va-sparc.h varargs.h stdarg.h stddef.h limits.h float.h proto.h tmpfoo
1.1.1.2   root       23: 
1.1       root       24: $installed/fixinc.svr4 $installed/include /usr/include $installed
1.1.1.2   root       25: 
                     26: # Make sure fixed native limits.h gets renamed to syslimits.h before gcc's
                     27: # limits.h from tmpfoo is moved back.
                     28: rm -f syslimits.h
                     29: if test -f limits.h ; then
                     30:   mv limits.h syslimits.h
                     31: else
                     32:   cp $installed/gsyslimits.h syslimits.h
                     33: fi
                     34: chmod a+r syslimits.h
                     35: 
1.1       root       36: mv tmpfoo/* .
                     37: rmdir tmpfoo
1.1.1.2   root       38: 
                     39: # eof

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.