diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2012-03-10 13:24:25 +0300 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2012-03-10 13:24:25 +0300 |
commit | b7c13f16452cc78f2d761a55fc49d2fd95009d4f (patch) | |
tree | e0581dc7d7baca7d38e6870eb88622cf27112e89 | |
parent | d154aff4fcd496d36e4ded70292464b01149e277 (diff) | |
download | pandoc-b7c13f16452cc78f2d761a55fc49d2fd95009d4f.tar.gz |
pandoc.cabal: fix typo in zlib's upper bound '<= 0.6' should be '< 0.6'
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
-rw-r--r-- | pandoc.cabal | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pandoc.cabal b/pandoc.cabal index a9acba757..e4a501e38 100644 --- a/pandoc.cabal +++ b/pandoc.cabal @@ -213,7 +213,7 @@ Library json >= 0.4 && < 0.6, tagsoup >= 0.12.5 && < 0.13, base64-bytestring >= 0.1 && < 0.2, - zlib >= 0.5 && <= 0.6, + zlib >= 0.5 && < 0.6, highlighting-kate >= 0.5.0.2 && < 0.6, temporary >= 1.1 && < 1.2 if impl(ghc >= 6.10) @@ -311,7 +311,7 @@ Executable pandoc json >= 0.4 && < 0.6, tagsoup >= 0.12.5 && < 0.13, base64-bytestring >= 0.1 && < 0.2, - zlib >= 0.5 && <= 0.6, + zlib >= 0.5 && < 0.6, highlighting-kate >= 0.5.0.2 && < 0.6, temporary >= 1.1 && < 1.2 if impl(ghc >= 6.10) @@ -369,7 +369,7 @@ Executable test-pandoc json >= 0.4 && < 0.6, tagsoup >= 0.12.5 && < 0.13, base64-bytestring >= 0.1 && < 0.2, - zlib >= 0.5 && <= 0.6, + zlib >= 0.5 && < 0.6, highlighting-kate >= 0.5.0.2 && < 0.6, temporary >= 1.1 && < 1.2 if impl(ghc >= 6.10) |