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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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