diff options
author | Brendan Kehoe <brendan@cygnus.com> | 1997-11-14 02:13:03 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1997-11-13 19:13:03 -0700 |
commit | 9bb5394eca7bf11a141fb4c551afcb90b8e34747 (patch) | |
tree | 6b12e62a188a572cf33a3ddca43928c520fe2882 /gcc | |
parent | d863830b531a8ccb7b230dec7f65322870c66ff7 (diff) | |
download | gcc-9bb5394eca7bf11a141fb4c551afcb90b8e34747.zip gcc-9bb5394eca7bf11a141fb4c551afcb90b8e34747.tar.gz gcc-9bb5394eca7bf11a141fb4c551afcb90b8e34747.tar.bz2 |
fixincludes: Be a little more restrictive on what we will substitute to replace definitions...
* fixincludes: Be a little more restrictive on what we will
substitute to replace definitions of MAXINT for HPUX.
From-SVN: r16480
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rwxr-xr-x | gcc/fixincludes | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a7aa7be..d52d45f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Thu Nov 13 19:12:33 1997 Brendan Kehoe <brendan@cygnus.com> + + * fixincludes: Be a little more restrictive on what we will + substitute to replace definitions of MAXINT for HPUX. + Thu Nov 13 18:41:02 1997 Michael Meissner <meissner@cygnus.com> * dbxout.c (dbxout_symbol_location): Don't assume that variables diff --git a/gcc/fixincludes b/gcc/fixincludes index af03dfb..89c9f71 100755 --- a/gcc/fixincludes +++ b/gcc/fixincludes @@ -2916,10 +2916,10 @@ else fi if [ \! -z "$file_to_fix" ]; then echo Checking $file_to_fix - sed -e '/[ ]MAXINT[ ]/i\ + sed -e '/^#[ ]*define[ ]*MAXINT[ ]/i\ #ifndef MAXINT '\ - -e '/[ ]MAXINT[ ]/a\ + -e '/^#[ ]*define[ ]*MAXINT[ ]/a\ #endif ' $file_to_fix > /tmp/$base if cmp $file_to_fix /tmp/$base >/dev/null 2>&1; then \ |