diff options
| author | Thomas Hallgren <th-github@altocumulus.org> | 2017-08-11 15:45:19 +0200 |
|---|---|---|
| committer | Thomas Hallgren <th-github@altocumulus.org> | 2017-08-11 15:45:19 +0200 |
| commit | ce1c1042e7ba238d91ff1fd06bb1a8ed07e0a8d9 (patch) | |
| tree | 08e1c231dba2189dd4c62dca4c664676bcf5cb1d | |
| parent | 8484dabd5b82dcc267a23a00ca55e8abdec5000b (diff) | |
gf.cabal: don't enable warnings about unused imports by default
| -rw-r--r-- | gf.cabal | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -99,7 +99,7 @@ Library else build-depends: binary, data-binary-ieee754 - ghc-options: -fwarn-unused-imports +--ghc-options: -fwarn-unused-imports --if impl(ghc>=7.8) -- ghc-options: +RTS -A20M -RTS ghc-prof-options: -fprof-auto @@ -312,8 +312,7 @@ Library else build-tools: happy, alex>=3 - if impl(ghc>=7.10) - ghc-options: -fno-warn-tabs + ghc-options: -fno-warn-tabs if os(windows) build-depends: Win32 @@ -326,7 +325,8 @@ Executable gf main-is: gf-main.hs default-language: Haskell2010 build-depends: gf, base - ghc-options: -threaded -fwarn-unused-imports + ghc-options: -threaded +--ghc-options: -fwarn-unused-imports if impl(ghc>=7.0) ghc-options: -rtsopts -with-rtsopts=-I5 |
