summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAiden Grossman <agrossman154@yahoo.com>2023-10-19 00:55:06 -0700
committerGitHub <noreply@github.com>2023-10-19 09:55:06 +0200
commite417ca54a0b69f604af4c1cf4af73680e4489d68 (patch)
treee3c268a8b7c3be37afadd9629b1ae885d2c2ae28
parent5bbf8454d0ef4817daa2f15d0216c26aa9e555f5 (diff)
downloadspack-e417ca54a0b69f604af4c1cf4af73680e4489d68.tar.gz
spack-e417ca54a0b69f604af4c1cf4af73680e4489d68.tar.bz2
spack-e417ca54a0b69f604af4c1cf4af73680e4489d68.tar.xz
spack-e417ca54a0b69f604af4c1cf4af73680e4489d68.zip
busybox: respect compiler choice (#39239)
-rw-r--r--var/spack/repos/builtin/packages/busybox/package.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/busybox/package.py b/var/spack/repos/builtin/packages/busybox/package.py
index 4b74b34611..a71e28907f 100644
--- a/var/spack/repos/builtin/packages/busybox/package.py
+++ b/var/spack/repos/builtin/packages/busybox/package.py
@@ -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)