Skip to content
Snippets Groups Projects
Commit 7202e2ac authored by Bodigrim's avatar Bodigrim Committed by Zubin
Browse files

hadrian: allow -Wunused-imports for text package

(cherry picked from commit 90746a59)
parent c580b505
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,9 @@ ghcWarningsArgs = do
, package primitive ? pure [ "-Wno-unused-imports"
, "-Wno-deprecations" ]
, package rts ? pure [ "-Wcpp-undef" ]
, package text ? pure [ "-Wno-deprecations", "-Wno-deriving-typeable" ]
, package text ? pure [ "-Wno-deprecations"
, "-Wno-deriving-typeable"
, "-Wno-unused-imports" ]
, package terminfo ? pure [ "-Wno-unused-imports", "-Wno-deriving-typeable" ]
, package stm ? pure [ "-Wno-deriving-typeable" ]
, package osString ? pure [ "-Wno-deriving-typeable" ]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment