From 458e8901e3d2a902521be02bb06377c689fcd493 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Thu, 1 Jul 1993 18:15:17 +0000 Subject: [PATCH] Remove special case for IRIX 4.0.1 that was superseded by a more general fix to fixincludes. From-SVN: r4814 --- gcc/fixincludes | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/gcc/fixincludes b/gcc/fixincludes index 1f25d44b1c0..d589f2c8bf9 100755 --- a/gcc/fixincludes +++ b/gcc/fixincludes @@ -784,20 +784,6 @@ if [ -r ${LIB}/$file ]; then fi fi -# Fix line in IRIX 4.0.1 header file. The sed script turns -# #define EM_CTRL (CUTIOC|0x1) -# into -# #define EM_CTRL (CUTIOC|0x'1') -file=sys/t3270reg.h -if [ -r ${LIB}/$file ]; then - echo Fixing $file, overeager sed script - sed -e "s/0x'1'/0x1/" ${LIB}/$file > ${LIB}/${file}.sed - rm -f ${LIB}/$file; mv ${LIB}/${file}.sed ${LIB}/$file - if cmp $file ${LIB}/$file >/dev/null 2>&1; then - rm -f ${LIB}/$file - fi -fi - # Turning // comments into /* */ comments trashes this IRIX 4.0.1 # header file, which embeds // comments inside multi-line /* */ # comments. If this looks like the IRIX header file, we refix it by -- 2.30.2