summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hadrian/src/Rules/ToolArgs.hs3
1 files changed, 1 insertions, 2 deletions
diff --git a/hadrian/src/Rules/ToolArgs.hs b/hadrian/src/Rules/ToolArgs.hs
index 6bcdafdcdf..c7a31fea3c 100644
--- a/hadrian/src/Rules/ToolArgs.hs
+++ b/hadrian/src/Rules/ToolArgs.hs
@@ -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]))]