diff options
author | Aiden Grossman <agrossman154@yahoo.com> | 2023-10-19 00:55:57 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-19 09:55:57 +0200 |
commit | b68a620fc282c6a466ace08ceb274a7408980a87 (patch) | |
tree | 04e59f243ded81c03b7793a3f1c4be61ddd8c75d | |
parent | e417ca54a0b69f604af4c1cf4af73680e4489d68 (diff) | |
download | spack-b68a620fc282c6a466ace08ceb274a7408980a87.tar.gz spack-b68a620fc282c6a466ace08ceb274a7408980a87.tar.bz2 spack-b68a620fc282c6a466ace08ceb274a7408980a87.tar.xz spack-b68a620fc282c6a466ace08ceb274a7408980a87.zip |
bioawk: respect compiler choice (#39241)
-rw-r--r-- | var/spack/repos/builtin/packages/bioawk/package.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/bioawk/package.py b/var/spack/repos/builtin/packages/bioawk/package.py index 57d0c629eb..6754a660b1 100644 --- a/var/spack/repos/builtin/packages/bioawk/package.py +++ b/var/spack/repos/builtin/packages/bioawk/package.py @@ -22,6 +22,9 @@ class Bioawk(MakefilePackage): parallel = False + def build(self, spec, prefix): + make("CC={0}".format(spack_cc)) + def install(self, spec, prefix): mkdirp(prefix.bin) install("bioawk", prefix.bin) |