diff options
author | David Terei <davidterei@gmail.com> | 2011-08-19 12:15:17 -0700 |
---|---|---|
committer | David Terei <davidterei@gmail.com> | 2011-08-19 12:15:17 -0700 |
commit | d65efb226f7708647b5312633ebfbe068492499c (patch) | |
tree | d3cd72e342d08ab49d00aab5268a4af191d3b92d /utils/ghc-pkg | |
parent | 26cf7e526c8e88d8c161c2e30865a914fc48ed6c (diff) | |
download | haskell-d65efb226f7708647b5312633ebfbe068492499c.tar.gz |
Fix validation problem when GHC is 7.2.1, warnings from binary.
Diffstat (limited to 'utils/ghc-pkg')
-rw-r--r-- | utils/ghc-pkg/ghc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/ghc-pkg/ghc.mk b/utils/ghc-pkg/ghc.mk index 03c9523e37..13d0b8a39b 100644 --- a/utils/ghc-pkg/ghc.mk +++ b/utils/ghc-pkg/ghc.mk @@ -51,7 +51,7 @@ endif utils/ghc-pkg/dist/build/$(utils/ghc-pkg_dist_PROG)$(exeext): utils/ghc-pkg/Main.hs utils/ghc-pkg/Version.hs | bootstrapping/. $$(dir $$@)/. $(GHC_CABAL_INPLACE) "$(GHC)" $(SRC_HC_OPTS) --make utils/ghc-pkg/Main.hs -o $@ \ -no-user-package-conf \ - -Wall -fno-warn-unused-imports \ + -Wall -fno-warn-unused-imports -fno-warn-warnings-deprecations \ -DCABAL_VERSION=$(CABAL_VERSION) \ -DBOOTSTRAPPING \ -odir bootstrapping \ |