From: Chris Hanson Date: Mon, 5 Feb 2007 18:43:08 +0000 (+0000) Subject: Remove leading parens that cause trouble on NetBSD. X-Git-Tag: 20090517-FFI~739 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=2c3b1f0ceb23429a6dd5de05b3fb363e8d93911c;p=mit-scheme.git Remove leading parens that cause trouble on NetBSD. --- diff --git a/v7/src/compiler/configure b/v7/src/compiler/configure index ea6a3d80c..6e4e46867 100755 --- a/v7/src/compiler/configure +++ b/v7/src/compiler/configure @@ -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, @@ -26,19 +26,19 @@ 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