[commit: ghc] wip/nfs-locking: Fix iosHost condition. (f8660c8)
git at git.haskell.org
git at git.haskell.org
Thu Oct 26 23:46:42 UTC 2017
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/nfs-locking
Link : http://ghc.haskell.org/trac/ghc/changeset/f8660c804c827eb8c0f9f29af2de57e5eca908f1/ghc
>---------------------------------------------------------------
commit f8660c804c827eb8c0f9f29af2de57e5eca908f1
Author: Andrey Mokhov <andrey.mokhov at gmail.com>
Date: Sat Jan 9 14:35:43 2016 +0000
Fix iosHost condition.
See #138. [skip ci]
>---------------------------------------------------------------
f8660c804c827eb8c0f9f29af2de57e5eca908f1
src/Settings/Packages.hs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Settings/Packages.hs b/src/Settings/Packages.hs
index 4d2f76c..b7e2dac 100644
--- a/src/Settings/Packages.hs
+++ b/src/Settings/Packages.hs
@@ -26,7 +26,7 @@ packagesStage0 = mconcat
-- the stage0 predicate makes sure these packages are built only in Stage0
, stage0 ? append [deriveConstants, dllSplit, genapply, genprimopcode, hp2ps]
, stage0 ? windowsHost ? append [touchy]
- , notM windowsHost ? iosHost ? append [terminfo] ]
+ , notM windowsHost ? notM iosHost ? append [terminfo] ]
packagesStage1 :: Packages
packagesStage1 = mconcat
More information about the ghc-commits
mailing list