Skip to content
Snippets Groups Projects
Commit 5031bf49 authored by sheaf's avatar sheaf Committed by Marge Bot
Browse files

Hadrian: Don't try to build terminfo on Windows

Commit b42cedbe introduced a dependency on terminfo on Windows,
but that package isn't available on Windows.
parent 383f7549
No related branches found
No related tags found
No related merge requests found
......@@ -167,10 +167,9 @@ toolTargets = [ binary
, time
, templateHaskell
, text
, terminfo
, transformers
, unlit -- # executable
] ++ if windowsHost then [ win32 ] else [ unix ]
] ++ if windowsHost then [ win32 ] else [ terminfo, unix ]
-- | Create a mapping from files to which component it belongs to.
dirMap :: Action [(FilePath, (Package, [String]))]
......
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