summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsternenseemann <sternenseemann@systemli.org>2022-07-25 00:26:43 +0200
committerDouglas Wilson <douglas.wilson@gmail.com>2022-07-27 11:29:56 +0100
commite4522c035729c10740b8199a2dad526e6a1623b1 (patch)
treeca0bf33c9f8b3e00e945e3140a07a549d5d018a7
parent1198d751927caa54a9826cf0068c7019d040916f (diff)
downloadhaskell-e4522c035729c10740b8199a2dad526e6a1623b1.tar.gz
ghc-cabal: allow Cabal 3.8 to unbreak make build
When bootstrapping GHC 9.4.*, the build will fail when configuring ghc-cabal as part of the make based build system due to this upper bound, as Cabal has been updated to a 3.8 release. Reference #21914, see especially https://gitlab.haskell.org/ghc/ghc/-/issues/21914#note_444699 (cherry picked from commit e4bf95920a9bbcb5b6ac3715282c69f612137156)
-rw-r--r--utils/ghc-cabal/ghc-cabal.cabal4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/ghc-cabal/ghc-cabal.cabal b/utils/ghc-cabal/ghc-cabal.cabal
index 537b5e357b..d0bacd388c 100644
--- a/utils/ghc-cabal/ghc-cabal.cabal
+++ b/utils/ghc-cabal/ghc-cabal.cabal
@@ -21,7 +21,7 @@ Executable ghc-cabal
Build-Depends: base >= 3 && < 5,
bytestring >= 0.10 && < 0.12,
- Cabal >= 3.7 && < 3.8,
- Cabal-syntax >= 3.7 && < 3.8,
+ Cabal >= 3.7 && < 3.9,
+ Cabal-syntax >= 3.7 && < 3.9,
directory >= 1.1 && < 1.4,
filepath >= 1.2 && < 1.5