summaryrefslogtreecommitdiff
path: root/utils/runghc/runghc.wrapper
diff options
context:
space:
mode:
authorSimon Marlow <marlowsd@gmail.com>2009-08-20 12:25:38 +0000
committerSimon Marlow <marlowsd@gmail.com>2009-08-20 12:25:38 +0000
commitff29c975891fda4c79fda76f9d01872566f33a2e (patch)
treebcf8451137cf5da82c49cf394ec21fa58b8b6bb2 /utils/runghc/runghc.wrapper
parent91a5df02a15c0a06b1d4a36a569e41b0624a1185 (diff)
downloadhaskell-ff29c975891fda4c79fda76f9d01872566f33a2e.tar.gz
fix the inplace runghc
It was invoking $(TOP)/inplace/bin/ghc rather than $(TOP)/inplace/bin/ghc-stage2
Diffstat (limited to 'utils/runghc/runghc.wrapper')
-rw-r--r--utils/runghc/runghc.wrapper2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/runghc/runghc.wrapper b/utils/runghc/runghc.wrapper
index 71b869cb54..af2d8eee89 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+"$@"}