diff options
author | Joey Hess <joey@kitenet.net> | 2013-12-24 13:13:17 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-12-24 13:13:17 -0400 |
commit | 1a73f7a85de82a93e1f2f82466d2426c1a14e508 (patch) | |
tree | 8b05ee69b35abc008181f5613769b74dd1622487 /Utility | |
parent | c885a444dbacb7fa35fc3de3429e3ca1c35d1de7 (diff) |
convert hacky shell linux mklibs code to haskell ; fixing symlink bug
The shell code was nasty, and buggy. New haskell code is much nicer,
and it's easy to do complicated calculations to properly convert possibly
absolute symlinks between libraries into relative links using it.
Diffstat (limited to 'Utility')
-rw-r--r-- | Utility/Directory.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Utility/Directory.hs b/Utility/Directory.hs index 2e3508e8d..6caee7efa 100644 --- a/Utility/Directory.hs +++ b/Utility/Directory.hs @@ -37,7 +37,7 @@ dirContents d = map (d </>) . filter (not . dirCruft) <$> getDirectoryContents d {- Gets files in a directory, and then its subdirectories, recursively, - and lazily. - - - Follows symlinks to other subdirectories. + - Does not follow symlinks to other subdirectories. - - When the directory does not exist, no exception is thrown, - instead, [] is returned. -} |