From: simonmar Date: Tue, 3 Jul 2001 11:14:33 +0000 (+0000) Subject: [project @ 2001-07-03 11:14:33 by simonmar] X-Git-Tag: Approximately_9120_patches~1628 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;ds=sidebyside;h=abd4130600ca2b6ba50ff70dc6959baa4141b405;p=ghc-hetmet.git [project @ 2001-07-03 11:14:33 by simonmar] Better exit with a failure code in ghc --make if something went wrong... --- diff --git a/ghc/compiler/main/Main.hs b/ghc/compiler/main/Main.hs index 5cf7ddf..bf34a74 100644 --- a/ghc/compiler/main/Main.hs +++ b/ghc/compiler/main/Main.hs @@ -1,6 +1,6 @@ {-# OPTIONS -fno-warn-incomplete-patterns #-} ----------------------------------------------------------------------------- --- $Id: Main.hs,v 1.78 2001/06/29 15:30:49 simonmar Exp $ +-- $Id: Main.hs,v 1.79 2001/07/03 11:14:33 simonmar Exp $ -- -- GHC Driver program -- @@ -318,7 +318,8 @@ beginMake fileish_args case mods of [] -> throwDyn (UsageError "no input files") mod -> do state <- cmInit Batch - cmLoadModule state mods + (_, ok, _) <- cmLoadModule state mods + when (not ok) (exitWith (ExitFailure 1)) return ()