From: Simon Marlow Date: Thu, 20 Aug 2009 12:25:38 +0000 (+0000) Subject: fix the inplace runghc X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=ff29c975891fda4c79fda76f9d01872566f33a2e fix the inplace runghc It was invoking $(TOP)/inplace/bin/ghc rather than $(TOP)/inplace/bin/ghc-stage2 --- diff --git a/utils/runghc/runghc.wrapper b/utils/runghc/runghc.wrapper index 71b869c..af2d8ee 100644 --- a/utils/runghc/runghc.wrapper +++ b/utils/runghc/runghc.wrapper @@ -1,3 +1,3 @@ #!/bin/sh -exec $executablename -f $bindir/ghc ${1+"$@"} +exec $executablename -f $bindir/ghc-stage2 ${1+"$@"}