3proxy: respect compiler choice (#39240)
This commit is contained in:
parent
96548047f8
commit
a6466b9ddd
@ -24,7 +24,9 @@ class _3proxy(MakefilePackage):
|
|||||||
depends_on("m4", type="build")
|
depends_on("m4", type="build")
|
||||||
|
|
||||||
def build(self, spec, prefix):
|
def build(self, spec, prefix):
|
||||||
make("-f", f"Makefile.{platform.system()}")
|
make("-f", f"Makefile.{platform.system()}", f"CC={spack_cc}")
|
||||||
|
|
||||||
def install(self, spec, prefix):
|
def install(self, spec, prefix):
|
||||||
make("-f", f"Makefile.{platform.system()}", f"prefix={prefix}", "install")
|
make(
|
||||||
|
"-f", f"Makefile.{platform.system()}", f"prefix={prefix}", f"CC={spack_cc}", "install"
|
||||||
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user