From: simonmar Date: Sun, 14 Jan 2001 15:34:31 +0000 (+0000) Subject: [project @ 2001-01-14 15:34:31 by simonmar] X-Git-Tag: Approximately_9120_patches~2914 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=eff1890b909ea5388d4015c9848f97ffafe8ac9d;p=ghc-hetmet.git [project @ 2001-01-14 15:34:31 by simonmar] Patterns in the case statement didn't work on my FreeBSD box due to a bogus-looking extra '(', so I removed it. Hope I haven't broken anything. --- diff --git a/ghc/utils/hsc2hs/hsc2hs.sh b/ghc/utils/hsc2hs/hsc2hs.sh index d757d11..ee4a5b9 100644 --- a/ghc/utils/hsc2hs/hsc2hs.sh +++ b/ghc/utils/hsc2hs/hsc2hs.sh @@ -1,8 +1,8 @@ for arg; do case "$arg" in - (--cc=*) HSC2HS_EXTRA=;; - (--) break;; + --cc=*) HSC2HS_EXTRA=;; + --) break;; esac done