Bryan Duxbury | 3fb4f1e | 2009-03-24 00:36:00 +0000 | [diff] [blame] | 1 | #!/bin/sh |
2 | |||||
3 | if [ -z $BASE_PKG ]; then | ||||
4 | BASE_PKG=`ghc-pkg --simple-output list base-3* | sed -e "s/.*\(base-3\(.[0-9]\){3}\).*/\1/"` | ||||
5 | fi | ||||
6 | |||||
7 | if [ -z $BASE ]; then | ||||
8 | BASE=../.. | ||||
9 | fi | ||||
10 | |||||
11 | ghci -fglasgow-exts -package $BASE_PKG -hide-package syb -i$BASE/lib/hs/src -i$BASE/test/hs/gen-hs Client.hs |