busybox: respect compiler choice (#39239)

This commit is contained in:
Aiden Grossman
2023-10-19 00:55:06 -07:00
committed by GitHub
parent 5bbf8454d0
commit e417ca54a0

View File

@@ -22,8 +22,8 @@ class Busybox(MakefilePackage):
def build(self, spec, prefix): def build(self, spec, prefix):
make("defconfig") make("defconfig")
make() make("CC={0}".format(spack_cc))
def install(self, spec, prefix): def install(self, spec, prefix):
make("install") make("install", "CC={0}".format(spack_cc))
install_tree(".", prefix) install_tree(".", prefix)