[project @ 2004-01-08 10:45:33 by simonmar]
authorsimonmar <unknown>
Thu, 8 Jan 2004 10:45:33 +0000 (10:45 +0000)
committersimonmar <unknown>
Thu, 8 Jan 2004 10:45:33 +0000 (10:45 +0000)
Fix warning message about missing Main module to refer to take into
account the -main-is flag.

ghc/compiler/compMan/CompManager.lhs

index cfea2b8..c4c1913 100644 (file)
@@ -576,7 +576,7 @@ cmLoadModules cmstate1 mg2unsorted
              let do_linking = a_root_is_Main || no_hs_main
              when (ghci_mode == Batch && isJust ofile && not do_linking
                     && verb > 0) $
-                hPutStrLn stderr "Warning: output was redirected with -o, but no output will be generated\nbecause there is no Main module."
+                hPutStrLn stderr ("Warning: output was redirected with -o, but no output will be generated\nbecause there is no " ++ main_mod ++ " module.")
 
              -- link everything together
               linkresult <- link ghci_mode dflags do_linking (hsc_HPT hsc_env3)