Remove special case for IRIX 4.0.1 that was superseded
authorPaul Eggert <eggert@gnu.org>
Thu, 1 Jul 1993 18:15:17 +0000 (18:15 +0000)
committerPaul Eggert <eggert@gnu.org>
Thu, 1 Jul 1993 18:15:17 +0000 (18:15 +0000)
by a more general fix to fixincludes.

From-SVN: r4814

gcc/fixincludes

index 1f25d44b1c083f88a65783921a3becb7e1083193..d589f2c8bf9b71f0ede936c2dcd44069ed7afce3 100755 (executable)
@@ -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