Skip to content

Commit

Permalink
gmp: fix cxx dependency, remove dependency on fortran (spack#47671)
Browse files Browse the repository at this point in the history
  • Loading branch information
alalazo authored Nov 19, 2024
1 parent 68aa712 commit 2db99e1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions var/spack/repos/builtin/packages/gmp/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 2db99e1

Please sign in to comment.