diff options
author | Brad Richardson <brichardson@structint.com> | 2020-06-14 21:05:58 -0700 |
---|---|---|
committer | Brad Richardson <brichardson@structint.com> | 2020-06-14 21:05:58 -0700 |
commit | ec8855dc7272f24c5e84cfbca53a53b544a61304 (patch) | |
tree | 2342aa91b4e26e976452110b112a4dad56223594 | |
parent | a124c4206b2eaed141c25ca18dee0a8ad70f122d (diff) | |
download | fpm-ec8855dc7272f24c5e84cfbca53a53b544a61304.tar.gz fpm-ec8855dc7272f24c5e84cfbca53a53b544a61304.zip |
Fix another path issue for build script
-rw-r--r-- | src/Build.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Build.hs b/src/Build.hs index ee8cbed..67ec2f9 100644 --- a/src/Build.hs +++ b/src/Build.hs @@ -392,7 +392,7 @@ buildWithScript script projectDirectory buildDirectory compiler flags libraryNam (intercalate " " (map unWindowsPath absoluteLibraryDirectories)) let archiveFile = (unWindowsPath absoluteBuildDirectory) - </> "lib" + ++ "/lib" ++ libraryName <.> "a" withCurrentDirectory |