diff options
author | Ian Lynagh <igloo@earth.li> | 2011-07-27 15:00:21 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-07-28 17:28:29 +0100 |
commit | de037e91a50206d294e2630e230459cb0445129b (patch) | |
tree | 91a09572ee0a2e1f947f7b3d3768c9e3cb39a345 /utils | |
parent | 60030a887f075c4858276f36097cdd2525952f1d (diff) | |
download | haskell-de037e91a50206d294e2630e230459cb0445129b.tar.gz |
Don't fail validate due to warnings in Cabal
Duncan says that Cabal isn't guaranteed to be warning-free.
Diffstat (limited to 'utils')
-rw-r--r-- | utils/ghc-cabal/ghc.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/ghc-cabal/ghc.mk b/utils/ghc-cabal/ghc.mk index bb28a3a2f9..39a26f07d3 100644 --- a/utils/ghc-cabal/ghc.mk +++ b/utils/ghc-cabal/ghc.mk @@ -34,7 +34,8 @@ $(GHC_CABAL_DIR)/dist/build/tmp/ghc-cabal$(exeext): $(GHC_CABAL_DIR)/Main.hs | $ -hidir bootstrapping \ -ilibraries/Cabal/cabal \ -ilibraries/filepath \ - -ilibraries/hpc + -ilibraries/hpc \ + $(utils/ghc-cabal_dist_EXTRA_HC_OPTS) touch $@ # touch is required, because otherwise if mkdirhier is newer, we |