Skip to content
Snippets Groups Projects
Commit 73694443 authored by Ross Paterson's avatar Ross Paterson
Browse files

fix isPortableBuild test

parent f4f6ccd1
No related branches found
No related tags found
No related merge requests found
......@@ -83,8 +83,7 @@ isPortableBuild :: String -> Bool
isPortableBuild s
| "GHC" `isPrefixOf` s = False
| "Data.Generics" `isPrefixOf` s = False
| otherwise = s `elem` ["Foreign.Concurrent",
"System.Process"]
| otherwise = s `notElem` ["Foreign.Concurrent", "System.Process"]
forGHCBuild :: String -> Bool
forGHCBuild = ("GHC.Prim" /=)
......
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