diff options
author | Ian Lynagh <igloo@earth.li> | 2009-05-06 01:04:45 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-05-06 01:04:45 +0000 |
commit | 6a0424c5df63b6f84c29b1dbf6412ffaf5279a54 (patch) | |
tree | 66e2d5652aa1e1503213281f7ad261b11f36e477 /boot | |
parent | 9000c679a8904a398022b96e01649120e024c615 (diff) | |
download | haskell-6a0424c5df63b6f84c29b1dbf6412ffaf5279a54.tar.gz |
Use more portable shell in ./boot; fixes booting on Solaris
Diffstat (limited to 'boot')
-rw-r--r-- | boot | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -50,7 +50,7 @@ for f in $libraries; do if test -f $cabals; then echo "Creating $f/ghc.mk" rm -f $f/ghc.mk - pkg=`basename ${cabals%.cabal}` + pkg=`echo "$cabals" | sed -e 's#.*/##' -e 's#\.cabal$##'` if test -f $f/ghc-stage; then stage=`cat $f/ghc-stage` else |