diff options
Diffstat (limited to 'driver/ghci/ghci.c')
-rw-r--r-- | driver/ghci/ghci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/driver/ghci/ghci.c b/driver/ghci/ghci.c index a603655ec8..79b2696f47 100644 --- a/driver/ghci/ghci.c +++ b/driver/ghci/ghci.c @@ -37,10 +37,10 @@ int main(int argc, char** argv) { preArgv[0] = "--interactive"; /* If ghc.exe can't be found, we assume that we're building ghc from - * source, in which case we fall back on ghc-stage2. + * source, in which case we fall back on ghc-stage1. */ if (!fileExists(exePath)) { - exePath = mkString("%s/ghc-stage2.exe", binDir); + exePath = mkString("%s/ghc-stage1.exe", binDir); } run(exePath, 1, preArgv, argc - 1, argv + 1, ReleaseResource); |