diff options
author | Richard Stallman <rms@gnu.org> | 1992-08-18 04:19:17 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-08-18 04:19:17 +0000 |
commit | e63c1d357b1ad721f799a0071ba511d2b7ab5581 (patch) | |
tree | 585fce5182e64f32230b82ae8968366124fa3e64 | |
parent | 31bcbccb4632823444daedffd10e14fc0afcf9e7 (diff) | |
download | gcc-e63c1d357b1ad721f799a0071ba511d2b7ab5581.zip gcc-e63c1d357b1ad721f799a0071ba511d2b7ab5581.tar.gz gcc-e63c1d357b1ad721f799a0071ba511d2b7ab5581.tar.bz2 |
(ansi_compat.h): Replace this with an empty file.
From-SVN: r1883
-rwxr-xr-x | gcc/fixincludes | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/fixincludes b/gcc/fixincludes index 2bcf7ae..1cab4c3 100755 --- a/gcc/fixincludes +++ b/gcc/fixincludes @@ -737,6 +737,14 @@ if [ -r ${LIB}/$file ]; then fi fi +# Cancel out ansi_compat.h on Ultrix. Replace it with empty file. +file=ansi_compat.h +if [ -r $file ] && [ ! -r ${LIB}/$file ]; then + if grep -s ULTRIX $file; then + echo "/* This file intentionally left blank. */" > $LIB/$file + fi +fi + # parameter to atof not const on DECstation Ultrix V4.0. file=math.h if [ -r $file ] && [ ! -r ${LIB}/$file ]; then |