diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1996-02-13 18:26:57 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1996-02-13 18:26:57 -0500 |
commit | f0f50f84de5e4c754784cc19d22147cce960b151 (patch) | |
tree | 208a628516b9f6b384e79047dc14a7c509cbdb58 /gcc | |
parent | 7ac09502bd6948b88ea271c4f24118d9b06fb2d8 (diff) | |
download | gcc-f0f50f84de5e4c754784cc19d22147cce960b151.zip gcc-f0f50f84de5e4c754784cc19d22147cce960b151.tar.gz gcc-f0f50f84de5e4c754784cc19d22147cce960b151.tar.bz2 |
(memory.h): Fix it also on sysV68.
From-SVN: r11270
Diffstat (limited to 'gcc')
-rwxr-xr-x | gcc/fixincludes | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/fixincludes b/gcc/fixincludes index 9ef8566..8a4ba5d 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 |