packages feed

haskell-packages 0.2.4 → 0.2.4.1

raw patch · 3 files changed

+7/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,6 +1,11 @@ Changes ======= +Version 0.2.4.1+---------------++Fix a bug with empty CPP defines (such as `-DFOO`)+ Version 0.2.4 ------------- 
haskell-packages.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/  name:                haskell-packages-version:             0.2.4+version:             0.2.4.1 synopsis:            Haskell suite library for package management and integration with Cabal description:         See <http://documentup.com/haskell-suite/haskell-packages> license:             MIT
src/Distribution/HaskellSuite/Cabal.hs view
@@ -220,7 +220,7 @@           def :: (String, String)           def =             case span (/= '=') str of-              (_, []) -> (str, "")+              (_, []) -> (str, "1")               (sym, _:var) -> (sym, var)           in Endo $ \opts -> opts { defines = def : defines opts }