diff options
author | Cale Gibbard <cgibbard@gmail.com> | 2020-02-07 16:55:56 -0500 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2020-02-10 16:10:39 -0500 |
commit | 6a94bc96f79ded771c1c395b77c4b1824ed65ce3 (patch) | |
tree | d56ddcb83a6f55409f01050cae5968e72f8995ab /haddock.cabal | |
parent | f3e3c4a766805a1bbea75bf23b84fdaaf053c226 (diff) |
Fix build of haddock in stage1
We have to use the correct version of the GHC API, but the version of the compiler itself doesn't matter.
Diffstat (limited to 'haddock.cabal')
-rw-r--r-- | haddock.cabal | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haddock.cabal b/haddock.cabal index 0d3e9d9f..89156794 100644 --- a/haddock.cabal +++ b/haddock.cabal @@ -64,7 +64,7 @@ executable haddock -- haddock typically only supports a single GHC major version build-depends: - base ^>= 4.14.0.0 + base ^>= 4.12.0.0 || ^>= 4.13.0.0 || ^>= 4.14.0.0 if flag(in-ghc-tree) hs-source-dirs: haddock-api/src, haddock-library/src |