From eff1890b909ea5388d4015c9848f97ffafe8ac9d Mon Sep 17 00:00:00 2001 From: simonmar Date: Sun, 14 Jan 2001 15:34:31 +0000 Subject: [PATCH] [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. --- ghc/utils/hsc2hs/hsc2hs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 1.7.10.4