connect-proxy: respect compiler choice (#39243)

This commit is contained in:
Aiden Grossman
2023-10-19 00:58:58 -07:00
committed by GitHub
parent b68a620fc2
commit cc47b06756

View File

@@ -17,6 +17,9 @@ class ConnectProxy(MakefilePackage):
version("1.105", sha256="07366026b1f81044ecd8da9b5b5b51321327ecdf6ba23576271a311bbd69d403") version("1.105", sha256="07366026b1f81044ecd8da9b5b5b51321327ecdf6ba23576271a311bbd69d403")
def build(self, spec, prefix):
make("CC={0}".format(spack_cc))
def install(self, spec, prefix): def install(self, spec, prefix):
mkdir(prefix.bin) mkdir(prefix.bin)
install("connect", prefix.bin) install("connect", prefix.bin)