gmp: fix cxx dependency, remove dependency on fortran (#47671)

This commit is contained in:
Massimiliano Culpo 2024-11-19 15:19:08 +01:00 committed by GitHub
parent 68aa712a3e
commit 2db99e1ff6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -26,9 +26,8 @@ class Gmp(AutotoolsPackage, GNUMirrorPackage):
# Old version needed for a binary package in ghc-bootstrap
version("4.3.2", sha256="936162c0312886c21581002b79932829aa048cfaf9937c6265aeaa14f1cd1775")
depends_on("c", type="build") # generated
depends_on("cxx", type="build") # generated
depends_on("fortran", type="build") # generated
depends_on("c", type="build")
depends_on("cxx", type="build", when="+cxx")
depends_on("autoconf", type="build")
depends_on("automake", type="build")