]> gcc.gnu.org Git - gcc.git/blame - gcc/just-fixinc
Make gcc use its own obstack.o.
[gcc.git] / gcc / just-fixinc
CommitLineData
f0c19c48 1#!/bin/sh
f929db3a
RS
2# This script exists for use after installing
3# the Solaris binaries from the FSF CD-ROM.
4# Use it *after* copying the directory of binaries
5# to the proper installed location.
6# It runs fixinc.svr4 to correct bugs in the Solaris header files.
7
8# The corrected header files go in the GCC installation directory
9# so that only GCC sees them.
10# This script does not modify the original header files in /usr/include.
11# It only modifies copies in the GCC installation directory.
12
13installed=/opt/gnu/lib/gcc-lib/sparc-sun-solaris2/2.4.2
14cd $installed/include
15rmdir tmpfoo > /dev/null 2>&1
f0c19c48
RS
16mkdir tmpfoo
17mv va-sparc.h varargs.h stdarg.h stddef.h limits.h float.h proto.h tmpfoo
f929db3a 18$installed/fixinc.svr4 $installed/include /usr/include $installed
f0c19c48
RS
19mv tmpfoo/* .
20rmdir tmpfoo
This page took 0.039776 seconds and 5 git commands to generate.