From: simonmar Date: Tue, 5 Mar 2002 14:30:51 +0000 (+0000) Subject: [project @ 2002-03-05 14:30:51 by simonmar] X-Git-Tag: Approx_11550_changesets_converted~2304 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=ae9bb984ce53571e23acb86f8d577bfbd3f49409;p=ghc-hetmet.git [project @ 2002-03-05 14:30:51 by simonmar] GHC.Prim is always excluded from ghc -M now. --- diff --git a/ghc/compiler/main/DriverMkDepend.hs b/ghc/compiler/main/DriverMkDepend.hs index 5a2f629..322eeda 100644 --- a/ghc/compiler/main/DriverMkDepend.hs +++ b/ghc/compiler/main/DriverMkDepend.hs @@ -1,5 +1,5 @@ ----------------------------------------------------------------------------- --- $Id: DriverMkDepend.hs,v 1.17 2002/02/05 14:42:08 simonpj Exp $ +-- $Id: DriverMkDepend.hs,v 1.18 2002/03/05 14:30:51 simonmar Exp $ -- -- GHC Driver -- @@ -37,7 +37,7 @@ import Maybe -- flags GLOBAL_VAR(v_Dep_makefile, "Makefile", String); GLOBAL_VAR(v_Dep_include_prelude, False, Bool); -GLOBAL_VAR(v_Dep_exclude_mods, [], [String]); +GLOBAL_VAR(v_Dep_exclude_mods, ["GHC.Prim"], [String]); GLOBAL_VAR(v_Dep_suffixes, [], [String]); GLOBAL_VAR(v_Dep_warnings, True, Bool);