Add a FIXME note in the driver script.
Chris Pressey
6 months ago
12 | 12 | elif [ -x $DIR/$NAME.exe ] ; then |
13 | 13 | exec $DIR/$NAME.exe $* |
14 | 14 | elif command -v runhaskell 2>&1 >/dev/null ; then |
15 | # FIXME: there seems to be no way to expose a package here like we do | |
16 | # with `-package mtl` when we compile it. Truly, it's a pity. | |
15 | 17 | exec runhaskell -i$SRC $SRC/Main.hs $* |
16 | 18 | elif command -v runhugs 2>&1 >/dev/null ; then |
17 | 19 | exec runhugs -i$SRC $SRC/Main.hs $* |