diff options
author | Simon Marlow <marlowsd@gmail.com> | 2009-08-26 10:49:37 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2009-08-26 10:49:37 +0000 |
commit | b56947b36b22699a3912864c28b26c21a1c0c366 (patch) | |
tree | fdcef6b434a806046d1ad92f376fc406da8c6e5e /utils/runghc | |
parent | 3ce0e4990f5a40dd989435b41cad279d347a047d (diff) | |
download | haskell-b56947b36b22699a3912864c28b26c21a1c0c366.tar.gz |
UNDO: fix the inplace runghc (it broke the installed runghc)
Diffstat (limited to 'utils/runghc')
-rw-r--r-- | utils/runghc/runghc.wrapper | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/runghc/runghc.wrapper b/utils/runghc/runghc.wrapper index af2d8eee89..71b869cb54 100644 --- a/utils/runghc/runghc.wrapper +++ b/utils/runghc/runghc.wrapper @@ -1,3 +1,3 @@ #!/bin/sh -exec $executablename -f $bindir/ghc-stage2 ${1+"$@"} +exec $executablename -f $bindir/ghc ${1+"$@"} |