diff options
author | albestro <9337627+albestro@users.noreply.github.com> | 2021-01-29 16:51:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-29 16:51:28 +0100 |
commit | 47c85059fbf6762af4da585414a97bfed8c3c0bb (patch) | |
tree | 1f934c7134b445a39d9eb01341e6cf66e4af5175 /var | |
parent | 9761c1387826b12846767e7c9df317a0112a9883 (diff) | |
download | spack-47c85059fbf6762af4da585414a97bfed8c3c0bb.tar.gz spack-47c85059fbf6762af4da585414a97bfed8c3c0bb.tar.bz2 spack-47c85059fbf6762af4da585414a97bfed8c3c0bb.tar.xz spack-47c85059fbf6762af4da585414a97bfed8c3c0bb.zip |
it seems like there was a bug in the version of APEX that we set by default in 1.5.x (#21391)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/hpx/package.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/hpx/package.py b/var/spack/repos/builtin/packages/hpx/package.py index 84109f7190..391371c1de 100644 --- a/var/spack/repos/builtin/packages/hpx/package.py +++ b/var/spack/repos/builtin/packages/hpx/package.py @@ -166,4 +166,8 @@ class Hpx(CMakePackage, CudaPackage): self.define('OTF2_ROOT', spec['otf2'].prefix), ] + # it seems like there was a bug in the default version of APEX in 1.5.x + if spec.satisfies("@:1.5"): + args += [self.define('HPX_WITH_APEX_TAG', "v2.3.0")] + return args |