Remove leading parens that cause trouble on NetBSD.
authorChris Hanson <org/chris-hanson/cph>
Mon, 5 Feb 2007 18:43:08 +0000 (18:43 +0000)
committerChris Hanson <org/chris-hanson/cph>
Mon, 5 Feb 2007 18:43:08 +0000 (18:43 +0000)
v7/src/compiler/configure

index ea6a3d80c5b2ce3f4f47c2278368b1d580b34192..6e4e468678ac5b16cd56231d784cbe02279da942 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-# $Id: configure,v 1.11 2007/01/12 06:19:53 cph Exp $
+# $Id: configure,v 1.12 2007/02/05 18:43:08 cph Exp $
 #
 # Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
 #     1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
 MACHINE=
 while test $# -gt 0; do
     case "${1}" in
-    (--enable-native-code=c)
+    --enable-native-code=c)
        MACHINE=C
        shift
        ;;
-    (--enable-native-code)
+    --enable-native-code)
        MACHINE=
        shift
        ;;
-    (--disable-native-code | --enable-native-code=no)
+    --disable-native-code | --enable-native-code=no)
        MACHINE=none
        shift
        ;;
-    (*)
+    *)
        shift
        ;;
     esac
@@ -46,28 +46,28 @@ done
 
 if test "x${MACHINE}" = x; then
     case `./config.guess` in
-    (alpha-* | alphaev[56]-* | alphaev56-* | alphapca56-*)
+    alpha-* | alphaev[56]-* | alphaev56-* | alphapca56-*)
        MACHINE=alpha
        ;;
-    (m68k-*)
+    m68k-*)
        MACHINE=bobcat
        ;;
-    (i[3456]86-*)
+    i[3456]86-*)
        MACHINE=i386
        ;;
-    (mips-* | mipsel-*)
+    mips-* | mipsel-*)
        MACHINE=mips
        ;;
-    (sparc-*)
+    sparc-*)
        MACHINE=sparc
        ;;
-    (hppa-* | hppa1.[01]-* | hppa2.?-*)
+    hppa-* | hppa1.[01]-* | hppa2.?-*)
        MACHINE=spectrum
        ;;
-    (vax-*)
+    vax-*)
        MACHINE=vax
        ;;
-    (*)
+    *)
        MACHINE=none
        ;;
     esac