diff options
author | Joey Hess <joey@kitenet.net> | 2013-12-06 14:46:32 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-12-06 14:46:32 -0400 |
commit | 3eb54b888fe02a4eb8ef86fe4931c188ba817f9d (patch) | |
tree | 3aa3c12571bb4bb75405e668b484e0baf5681539 /Build | |
parent | 65f29ad49a496ff767f8306a86cbc36575d49b36 (diff) |
more path mangling, because DOS
Diffstat (limited to 'Build')
-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 0e386bcac..b81eb374a 100644 --- a/Build/EvilLinker.hs +++ b/Build/EvilLinker.hs @@ -86,7 +86,7 @@ parseCollect2 = do path <- manyTill anyChar (try $ string ldcmd) char ' ' params <- restOfLine - return $ CmdParams (path ++ ldcmd) params Nothing + return $ CmdParams (path ++ ldcmd) (escapeDosPaths params) Nothing where ldcmd = "ld.exe" |