cpkg 0.1.3.0 → 0.1.3.1
raw patch · 3 files changed
+7/−2 lines, 3 files
Files
- CHANGELOG.md +4/−0
- cpkg.cabal +1/−1
- src/Package/C/Build/Tree.hs +2/−1
CHANGELOG.md view
@@ -1,5 +1,9 @@ # cpkg +## 0.1.3.1++ * Don't install build-tool dependencies globally+ ## 0.1.3.0 * Add ability to patch libraries
cpkg.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.18 name: cpkg-version: 0.1.3.0+version: 0.1.3.1 license: BSD3 license-file: LICENSE copyright: Copyright: (c) 2018-2019 Vanessa McHale
src/Package/C/Build/Tree.hs view
@@ -55,7 +55,8 @@ buildCPkg c host sta glob ds (immoralFilter host ls) is (filterCross host bs) where (BuildDirs ls ds is bs) = getAll (fst <$> preBds) buildAlg (BldDepNodeF c preBds) =- buildCPkg c Nothing False glob ds ls is bs -- don't use static libraries for build dependencies+ buildCPkg c Nothing False False ds ls is bs -- don't use static libraries for build dependencies+ -- also don't install them globally for obvious reasons where (BuildDirs ls ds is bs) = getAll (fst <$> preBds) mkBuildDirs :: MonadIO m => FilePath -> BuildDirs -> m BuildDirs