diff options
author | Brad Richardson <brichardson@structint.com> | 2020-06-11 14:42:10 -0700 |
---|---|---|
committer | Brad Richardson <brichardson@structint.com> | 2020-06-11 14:42:10 -0700 |
commit | 3f5c3af2b5d334e62190a59b2551fc2851282fae (patch) | |
tree | a5cd9ac4d3cb4e8a7f5786e8be1f118b3ddfa051 /src/Fpm.hs | |
parent | 91e95b0ab00278c2dfa90b7ea86d8e95604cd308 (diff) | |
download | fpm-3f5c3af2b5d334e62190a59b2551fc2851282fae.tar.gz fpm-3f5c3af2b5d334e62190a59b2551fc2851282fae.zip |
Fix ordering for library archive list
Diffstat (limited to 'src/Fpm.hs')
-rw-r--r-- | src/Fpm.hs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -569,7 +569,7 @@ buildDependencies -> IO [(FilePath, FilePath)] buildDependencies buildPrefix compiler flags dependencies = do built <- concatMapM (buildDependency buildPrefix compiler flags) dependencies - return $ nub built + return $ reverse (nub (reverse built)) buildDependency :: String -> String -> [String] -> DependencyTree -> IO [(FilePath, FilePath)] |