diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 1997-02-27 22:56:43 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 1997-02-27 22:56:43 +0000 |
commit | 6052e61938ffbda81245f1f31710ce4e50241e38 (patch) | |
tree | e3b2e8e97ad68172b30ffd654ff90f2ef67eb637 | |
parent | 26a20dde930c66742c39be06b97396d0a8fb0585 (diff) | |
download | gcc-6052e61938ffbda81245f1f31710ce4e50241e38.zip gcc-6052e61938ffbda81245f1f31710ce4e50241e38.tar.gz gcc-6052e61938ffbda81245f1f31710ce4e50241e38.tar.bz2 |
Fix sed expression which looks for <sys/types.h> in <pwd.h>
From-SVN: r13681
-rw-r--r-- | gcc/fixinc.ptx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fixinc.ptx b/gcc/fixinc.ptx index 7464205..90e1b86 100644 --- a/gcc/fixinc.ptx +++ b/gcc/fixinc.ptx @@ -1,7 +1,7 @@ #! /bin/sh # Install modified versions of certain ANSI-incompatible # native Sequent DYNIX/ptx System V Release 3.2 system include files. -# Copyright (C) 1994, 1996 Free Software Foundation, Inc. +# Copyright (C) 1994, 1996, 1997 Free Software Foundation, Inc. # Contributed by Bill Burton <billb@progress.com> # Portions adapted from fixinc.svr4 and fixincludes. # @@ -125,7 +125,7 @@ if [ \! -z "$file_to_fix" ]; then if grep stdio $file_to_fix > /dev/null; then true else - sed -e '/#include \<sys\types\.h\>/a\ + sed -e '/#include <sys\/types\.h>/a\ \ #if defined(__STDC__) || defined(__cplusplus)\ #include <stdio.h>\ |