[project @ 2001-01-14 15:34:31 by simonmar]
authorsimonmar <unknown>
Sun, 14 Jan 2001 15:34:31 +0000 (15:34 +0000)
committersimonmar <unknown>
Sun, 14 Jan 2001 15:34:31 +0000 (15:34 +0000)
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

index d757d11..ee4a5b9 100644 (file)
@@ -1,8 +1,8 @@
 
 for arg; do
     case "$arg" in
-        (--cc=*) HSC2HS_EXTRA=;;
-        (--)     break;;
+        --cc=*) HSC2HS_EXTRA=;;
+        --)     break;;
     esac
 done