diff options
author | Noah Friedman <friedman@gnu.org> | 1994-08-16 16:42:48 -0400 |
---|---|---|
committer | Noah Friedman <friedman@gnu.org> | 1994-08-16 16:42:48 -0400 |
commit | 941a8cecd5207d816d7dfc9edd2a2f5963ba1bbb (patch) | |
tree | 771ec19319f34a74f253141ad5f611636007a599 | |
parent | 0e7e3fc1a939404aa6e07d0467dc3643e33b9fd2 (diff) | |
download | gcc-941a8cecd5207d816d7dfc9edd2a2f5963ba1bbb.zip gcc-941a8cecd5207d816d7dfc9edd2a2f5963ba1bbb.tar.gz gcc-941a8cecd5207d816d7dfc9edd2a2f5963ba1bbb.tar.bz2 |
Updated comments.
From-SVN: r7935
-rwxr-xr-x | gcc/just-fixinc | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gcc/just-fixinc b/gcc/just-fixinc index b11ed2e..e5ceaec 100755 --- a/gcc/just-fixinc +++ b/gcc/just-fixinc @@ -1,16 +1,20 @@ #!/bin/sh +# $Id$ # This script exists for use after installing -# the Solaris binaries from a distribution tape/CDROM. +# the GCC binaries from a distribution tape/CD-ROM. # Use it *after* copying the directory of binaries # to the proper installed location. -# It runs fixinc.svr4 to correct bugs in the Solaris header files. +# It runs fixincludes (or fixinc.svr4, if appropriate) to correct bugs in +# the system header files. +# This script needs to be customized for each type of installation so that +# others may run it after the installation-sans-fixincludes is completed. # The corrected header files go in the GCC installation directory # so that only GCC sees them. # This script does not modify the original header files in /usr/include. # It only modifies copies in the GCC installation directory. -installed=/opt/gnu/lib/gcc-lib/sparc-sun-solaris2/2.5.0 +installed=/opt/gnu/lib/gcc-lib/sparc-sun-solaris2/2.6.0 cd $installed/include rmdir tmpfoo > /dev/null 2>&1 |