diff options
author | Harmen Stoppels <harmenstoppels@gmail.com> | 2022-05-25 15:17:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-25 15:17:58 +0200 |
commit | b29f27aec7ac6ad05c3f45972c97b1309d4936af (patch) | |
tree | 2af570d34fcad4efe9ddd68874a99e6d77cfe72a | |
parent | 0176d9830dbc4bebf4e70e75b807c7aab1d6bc82 (diff) | |
download | spack-b29f27aec7ac6ad05c3f45972c97b1309d4936af.tar.gz spack-b29f27aec7ac6ad05c3f45972c97b1309d4936af.tar.bz2 spack-b29f27aec7ac6ad05c3f45972c97b1309d4936af.tar.xz spack-b29f27aec7ac6ad05c3f45972c97b1309d4936af.zip |
dsfmt: set CC=cc (#30842)
-rw-r--r-- | var/spack/repos/builtin/packages/dsfmt/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/dsfmt/package.py b/var/spack/repos/builtin/packages/dsfmt/package.py index ccdadd87f8..26b53a671a 100644 --- a/var/spack/repos/builtin/packages/dsfmt/package.py +++ b/var/spack/repos/builtin/packages/dsfmt/package.py @@ -26,7 +26,7 @@ class Dsfmt(MakefilePackage): return find_libraries('libdSFMT', root=self.prefix, recursive=True) def build(self, spec, prefix): - make('build-library') + make('build-library', 'CC=cc') def install(self, spec, prefix): make('PREFIX={0}'.format(prefix), 'install') |