OSDN Git Service

* de.po: Update.
[pf3gnuchains/gcc-fork.git] / gcc / fixinc / mkfixinc.sh
index 29567bd..a3700cc 100755 (executable)
@@ -14,7 +14,7 @@ echo constructing ${target} for $machine to run on $build
 fixincludes="${machine}"
 
 # Choose one or two-process fix methodology.  Systems that cannot handle
-# bi-directional pipes must use the twoprocess method.
+# bi-directional pipes must use the two process method.
 #
 case $build in
        i?86-*-msdosdjgpp* | \
@@ -35,55 +35,28 @@ esac
 
 # Check for special fix rules for particular targets
 case $machine in
-       *-*-sysv4* )
-               fixincludes=fixinc.svr4
-               ;;
-
-       i?86-*-interix* | \
-       alpha-*-interix*)
-               fixincludes=fixinc.interix
-               ;;
-
-       i?86-*-openbsd*)
-               fixincludes=fixinc.wrap
-               ;;
-
-       alpha*-*-winnt* | \
-       i?86-*-winnt3*)
-               fixincludes=fixinc.winnt
-               ;;
-
-       i?86-sequent-ptx* | i?86-sequent-sysv[34]*)
-               fixincludes=fixinc.ptx
-               ;;
-
-       alpha*-dec-vms* | \
-       arm-semi-aout | armel-semi-aout | \
-       arm-semi-aof | armel-semi-aof | \
-       c*-convex-* | \
-       hppa1.1-*-osf* | \
-       hppa1.0-*-osf* | \
-       hppa1.1-*-bsd* | \
-       hppa1.0-*-bsd* | \
-       hppa*-*-lites* | \
-       i?86-moss-msdos* | i?86-*-moss* | \
-       i?86-*-osf1* | \
-       i?86-*-win32 | \
-       i?86-*-pe | i?86-*-cygwin* | \
-       i?86-*-mingw32* | \
-       i?86-*-uwin* | \
-       mips-sgi-irix5cross64 | \
-       powerpc-*-eabiaix* | \
-       powerpc-*-eabisim* | \
-       powerpc-*-eabi*    | \
-       powerpc-*-rtems*   | \
-       powerpcle-*-eabisim* | \
-       powerpcle-*-eabi*  | \
-        powerpcle-*-winnt* | \
-       powerpcle-*-pe | powerpcle-*-cygwin* | \
-       thumb-*-coff* | thumbel-*-coff* )
-               fixincludes=
-               ;;
+    alpha*-dec-*vms* | \
+    arm-semi-aof | \
+    hppa1.1-*-osf* | \
+    hppa1.1-*-bsd* | \
+    i370-*-openedition | \
+    i?86-moss-msdos* | \
+    i?86-*-moss* | \
+    i?86-*-pe | \
+    i?86-*-cygwin* | \
+    i?86-*-mingw32* | \
+    i?86-*-uwin* | \
+    i?86-*-interix* | \
+    powerpc-*-eabiaix* | \
+    powerpc-*-eabisim* | \
+    powerpc-*-eabi*    | \
+    powerpc-*-rtems*   | \
+    powerpcle-*-eabisim* | \
+    powerpcle-*-eabi* )
+        #  Don't do any fixing.
+        #
+        fixincludes=
+        ;;
 esac
 
 #  IF there is no include fixing,
@@ -96,21 +69,10 @@ then
     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
-
 #  OK.  We gotta make the thing.
 #  make and install either the binary or the default script
 
-defs="SHELL=\"$SHELL\" CC=\"$CC\" CFLAGS=\"$CFLAGS\" LDFLAGS=\"$LDFLAGS\""
+defs="SHELL=\"$SHELL\" CC=\"$CC\" CFLAGS=\"$CFLAGS\" LDFLAGS=\"$LDFLAGS\" LIBERTY=\"$LIBERTY\""
 cmd="$MAKE ${defs} install-bin"
 echo $cmd
 eval $cmd