diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-02-13 23:26:57 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-02-13 23:26:57 +0000 |
commit | 34ddf15a0d405c7c3b0a58be05d22eba9828a452 (patch) | |
tree | 208a628516b9f6b384e79047dc14a7c509cbdb58 /gcc/fixincludes | |
parent | aae142b41791aad69e0bfd781d67e25f9a36f188 (diff) | |
download | gcc-34ddf15a0d405c7c3b0a58be05d22eba9828a452.tar.gz |
(memory.h): Fix it also on sysV68.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@11270 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fixincludes')
-rwxr-xr-x | gcc/fixincludes | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/fixincludes b/gcc/fixincludes index 9ef8566794e..8a4ba5d8979 100755 --- a/gcc/fixincludes +++ b/gcc/fixincludes @@ -1201,8 +1201,9 @@ fi # declaration on Sun OS 4.x. We must only fix this on Sun OS 4.x, because # many other systems have similar text but correct versions of the file. # To ensure only Sun's is fixed, we grep for a likely unique string. +# Fix also on sysV68 R3V7.1 (head/memory.h\t50.1\t ) file=memory.h -if [ -r $file ] && egrep '/\* @\(#\)memory\.h 1\.[2-4] 8./../.. SMI; from S5R2 1\.2 \*/' $file > /dev/null; then +if [ -r $file ] && egrep '/\* @\(#\)(head/memory.h 50.1 |memory\.h 1\.[2-4] 8./../.. SMI; from S5R2 1\.2 )\*/' $file > /dev/null; then if [ ! -r ${LIB}/$file ]; then cp $file ${LIB}/$file >/dev/null 2>&1 || echo "Can't copy $file" chmod +w ${LIB}/$file 2>/dev/null |