diff options
author | Don Stewart <dons@galois.com> | 2008-11-04 04:58:57 +0100 |
---|---|---|
committer | Don Stewart <dons@galois.com> | 2008-11-04 04:58:57 +0100 |
commit | 2c0ff5c15dc9882f8f4bb8e7a57ba1dbc19ec6e0 (patch) | |
tree | fcbd5a2f706e56cb4d631f9d806489e5189ffaaa /xmonad-contrib.cabal | |
parent | d61bb9e37ee33bbe8c2f111411819fdb7e4f5784 (diff) | |
download | XMonadContrib-2c0ff5c15dc9882f8f4bb8e7a57ba1dbc19ec6e0.tar.gz XMonadContrib-2c0ff5c15dc9882f8f4bb8e7a57ba1dbc19ec6e0.tar.xz XMonadContrib-2c0ff5c15dc9882f8f4bb8e7a57ba1dbc19ec6e0.zip |
place an upper bound on the version of base we support
Ignore-this: 29139cc4f0ecb299b56ae99f7d20b854
darcs-hash:20081104035857-cba2c-b9f53d0dd61c891a100a9146de361760c384f537.gz
Diffstat (limited to '')
-rw-r--r-- | xmonad-contrib.cabal | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmonad-contrib.cabal b/xmonad-contrib.cabal index 0eba71c..8b56b80 100644 --- a/xmonad-contrib.cabal +++ b/xmonad-contrib.cabal @@ -43,9 +43,9 @@ flag testing library if flag(small_base) - build-depends: base >= 3, containers, directory, process, random, old-time, old-locale + build-depends: base >= 3 && < 4, containers, directory, process, random, old-time, old-locale else - build-depends: base < 3 + build-depends: base < 3 && < 4 if flag(use_xft) build-depends: X11-xft >= 0.2, utf8-string |