gmake: add empty libs property, remove link deptypes from dependents (#48995)
This commit is contained in:
parent
af89bdf632
commit
76e83e10c1
@ -125,9 +125,9 @@ class Cmake(Package):
|
||||
patch("mr-9623.patch", when="@3.22.0:3.30")
|
||||
|
||||
depends_on("ninja", when="platform=windows")
|
||||
depends_on("gmake", when="platform=linux")
|
||||
depends_on("gmake", when="platform=darwin")
|
||||
depends_on("gmake", when="platform=freebsd")
|
||||
depends_on("gmake", type=("build", "run"), when="platform=linux")
|
||||
depends_on("gmake", type=("build", "run"), when="platform=darwin")
|
||||
depends_on("gmake", type=("build", "run"), when="platform=freebsd")
|
||||
|
||||
depends_on("qt", when="+qtgui")
|
||||
# Qt depends on libmng, which is a CMake package;
|
||||
|
@ -99,3 +99,7 @@ def setup_dependent_package(self, module, dspec):
|
||||
self.spec.prefix.bin.make,
|
||||
jobs=determine_number_of_jobs(parallel=dspec.package.parallel),
|
||||
)
|
||||
|
||||
@property
|
||||
def libs(self):
|
||||
return []
|
||||
|
@ -335,8 +335,7 @@ def check_fortran_compiler(self):
|
||||
patch("revert-3.18.0-ver-format-for-dealii.patch", when="@3.18.0")
|
||||
|
||||
depends_on("diffutils", type="build")
|
||||
# not listed as a "build" dependency - so that slepc build gets the same dependency
|
||||
depends_on("gmake")
|
||||
depends_on("gmake", type="build")
|
||||
|
||||
# Virtual dependencies
|
||||
# Git repository needs sowing to build Fortran interface
|
||||
|
Loading…
Reference in New Issue
Block a user