blob: de43efa924289d26ddae57db1c85ddfc7451f128 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
module Environment (setupEnvironment) where
import System.Environment
-- | The build system invokes many external builders whose behaviour is
-- influenced by the environment variables. We need to modify some of them
-- for better robustness of the build system.
setupEnvironment :: IO ()
setupEnvironment = do
-- ghc-cabal refuses to work when GHC_PACKAGE_PATH is set (e.g. by Stack)
unsetEnv "GHC_PACKAGE_PATH"
-- in MinGW if PWD is set to a Windows "C:\\" style path then configure
-- `pwd` will return the Windows path, and then modifying $PATH will fail.
-- See https://github.com/snowleopard/hadrian/issues/189 for details.
unsetEnv "PWD"
|