diff options
author | Mikael Simberg <mikael.simberg@iki.fi> | 2022-12-12 15:16:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-12 07:16:40 -0700 |
commit | 06e63892584a72ecc983498d8ef4447fc1f15aba (patch) | |
tree | a4634ab26318458c0172907b18962c561169510d /var | |
parent | b7f0f7879d93b391754e9e8799ca99d2c5988ad9 (diff) | |
download | spack-06e63892584a72ecc983498d8ef4447fc1f15aba.tar.gz spack-06e63892584a72ecc983498d8ef4447fc1f15aba.tar.bz2 spack-06e63892584a72ecc983498d8ef4447fc1f15aba.tar.xz spack-06e63892584a72ecc983498d8ef4447fc1f15aba.zip |
stdexec: skip build phase (#34425)
Since it's a header-only library there's nothing to build. However, the
default targets include tests and examples and there's no option to turn
them off during configuration time.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/stdexec/package.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/stdexec/package.py b/var/spack/repos/builtin/packages/stdexec/package.py index 532dfcb190..dc92c14e8b 100644 --- a/var/spack/repos/builtin/packages/stdexec/package.py +++ b/var/spack/repos/builtin/packages/stdexec/package.py @@ -19,3 +19,6 @@ class Stdexec(CMakePackage): conflicts("%gcc@:10") conflicts("%clang@:13") + + def build(self, spec, prefix): + pass |