diff options
author | Joey Hess <joey@kitenet.net> | 2013-12-10 12:53:37 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-12-10 12:53:37 -0400 |
commit | 15c2e40417924cd842bf3757408a784ea3e84cb1 (patch) | |
tree | b389b3272a348721ca31f9733f81a7c593328ebf /Build/EvilLinker.hs | |
parent | a0b59f41892288fef3f011d8e4ff2b4edc7404aa (diff) |
try setting TMPDIR for collect2 to not use C:\Windows
Diffstat (limited to 'Build/EvilLinker.hs')
-rw-r--r-- | Build/EvilLinker.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/EvilLinker.hs b/Build/EvilLinker.hs index a49c37a92..9dbd2c4c6 100644 --- a/Build/EvilLinker.hs +++ b/Build/EvilLinker.hs @@ -123,7 +123,7 @@ runAtFile p s f extraparams = do when (null $ opts c) $ error $ "failed to find any options for " ++ f ++ " in >>>" ++ s ++ "<<<" writeFile f (opts c) - print "in file: >>>" ++ (opts c) ++ "<<<" + print $ "in file: >>>" ++ (opts c) ++ "<<<" out <- getOutput (cmd c) (atFile f:extraparams) (env c) removeFile f return out |