summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess2016-03-25 18:45:49 -0400
committerJoey Hess2016-03-25 18:45:49 -0400
commit57adcf0e445ae31cf9a9db66d3a7f4793c8399a6 (patch)
treefb08b50b8434a45590aadd12570b3ef32d6257ee
parentce8d34d094be30e1432ecaaae81b188671180624 (diff)
avoid cabal warning
-rw-r--r--propellor.cabal9
1 files changed, 6 insertions, 3 deletions
diff --git a/propellor.cabal b/propellor.cabal
index c8c68e48..e47bb2e6 100644
--- a/propellor.cabal
+++ b/propellor.cabal
@@ -36,7 +36,8 @@ Description:
Executable propellor
Main-Is: wrapper.hs
- GHC-Options: -threaded -Wall -fno-warn-tabs -XTypeOperators
+ GHC-Options: -threaded -Wall -fno-warn-tabs
+ Extensions: TypeOperators
Hs-Source-Dirs: src
Build-Depends:
-- propellor needs to support the ghc shipped in Debian stable
@@ -47,7 +48,8 @@ Executable propellor
Executable propellor-config
Main-Is: config.hs
- GHC-Options: -threaded -Wall -fno-warn-tabs -XTypeOperators
+ GHC-Options: -threaded -Wall -fno-warn-tabs
+ Extensions: TypeOperators
Hs-Source-Dirs: src
Build-Depends: MissingH, directory, filepath, base >= 4.5, base < 5,
IfElse, process, bytestring, hslogger, unix-compat, ansi-terminal,
@@ -55,7 +57,8 @@ Executable propellor-config
exceptions (>= 0.6), stm, text, unix
Library
- GHC-Options: -Wall -fno-warn-tabs -XTypeOperators
+ GHC-Options: -Wall -fno-warn-tabs
+ Extensions: TypeOperators
Hs-Source-Dirs: src
Build-Depends: MissingH, directory, filepath, base >= 4.5, base < 5,
IfElse, process, bytestring, hslogger, unix-compat, ansi-terminal,