This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[fixinc patch] Normalize the last of the weird systems


OK.  My informant has told me that we have success on Sequent's DYNIX/ptx,
and I don't have any other testable svr4 systems.  Accordingly I'd like
to commit this to mainline.  It's the finale of a nice set of cleanups.  :-)

	* mkfixinc.sh: Remove special cases for svr4 and ptx, and related
	code.
	* fixinc.ptx: Remove.
	* fixinc.svr4: Remove.

Index: mkfixinc.sh
===================================================================
RCS file: /cvs/gcc/gcc/gcc/fixinc/mkfixinc.sh,v
retrieving revision 1.53
diff -u -r1.53 mkfixinc.sh
--- mkfixinc.sh	28 Aug 2003 20:22:58 -0000	1.53
+++ mkfixinc.sh	24 Oct 2003 00:04:18 -0000
@@ -35,17 +35,6 @@
 
 # Check for special fix rules for particular targets
 case $machine in
-    i?86-*-sysv4.2uw2* )
-        ;;
-
-    *-*-sysv4* )
-        fixincludes=fixinc.svr4
-        ;;
-
-    i?86-sequent-ptx* | i?86-sequent-sysv[34]*)
-        fixincludes=fixinc.ptx
-        ;;
-
     alpha*-dec-*vms* | \
     arm-semi-aof | \
     hppa1.1-*-osf* | \
@@ -76,17 +65,6 @@
 if test -z "$fixincludes"
 then
     (echo "#! /bin/sh" ; echo "exit 0" ) > ${target}
-    chmod 755 ${target}
-    exit 0
-fi
-
-#  IF the fixer is supplied in our source directory,
-#  THEN copy that into place
-#
-if test -f ${srcdir}/"${fixincludes}"
-then
-    echo copying ${srcdir}/$fixincludes to ${target}
-    cp ${srcdir}/$fixincludes ${target}
     chmod 755 ${target}
     exit 0
 fi

-- 
Nathanael Nerode  <neroden at gcc.gnu.org>
http://home.twcny.rr.com/nerode/neroden/fdl.html


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]