Skip to content

Commit

Permalink
Dont be overly eager with normalising Paths
Browse files Browse the repository at this point in the history
  • Loading branch information
fendor committed Apr 14, 2020
1 parent 8bc55af commit 92ea21e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/HIE/Bios/Environment.hs
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,9 @@ makePathsAbsolute work_dir df =
mapOverIncludePaths (prependIfNotAbsolute work_dir)
$ df
{ importPaths = map (prependIfNotAbsolute work_dir) (importPaths df)
, libraryPaths = map (prependIfNotAbsolute work_dir) (libraryPaths df)
, hpcDir = prependIfNotAbsolute work_dir (hpcDir df)
, frameworkPaths = map (prependIfNotAbsolute work_dir) (frameworkPaths df)
-- , libraryPaths = map (prependIfNotAbsolute work_dir) (libraryPaths df)
-- , hpcDir = prependIfNotAbsolute work_dir (hpcDir df)
-- , frameworkPaths = map (prependIfNotAbsolute work_dir) (frameworkPaths df)
}
where
prependIfNotAbsolute wdir f
Expand Down

0 comments on commit 92ea21e

Please sign in to comment.