From abd4130600ca2b6ba50ff70dc6959baa4141b405 Mon Sep 17 00:00:00 2001 From: simonmar Date: Tue, 3 Jul 2001 11:14:33 +0000 Subject: [PATCH] [project @ 2001-07-03 11:14:33 by simonmar] Better exit with a failure code in ghc --make if something went wrong... --- ghc/compiler/main/Main.hs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 () -- 1.7.10.4