summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAndre Sailer <andre.philippe.sailer@cern.ch>2020-12-14 14:31:57 +0100
committerGitHub <noreply@github.com>2020-12-14 14:31:57 +0100
commitd1bebb4d05a7a63c77ee948566a02a07f3eb4a92 (patch)
tree7e6e3f788709a8c77aa13a3818b1c9832f934ebb /var
parent8fd4719291c7ecd4bfd01154757cffca560ce12e (diff)
downloadspack-d1bebb4d05a7a63c77ee948566a02a07f3eb4a92.tar.gz
spack-d1bebb4d05a7a63c77ee948566a02a07f3eb4a92.tar.bz2
spack-d1bebb4d05a7a63c77ee948566a02a07f3eb4a92.tar.xz
spack-d1bebb4d05a7a63c77ee948566a02a07f3eb4a92.zip
mysql: fixed variant mismatch with boost (#20370)
Require boost at cxxstd=14 if cxxstd=14 is selected, not 11
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/mysql/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/mysql/package.py b/var/spack/repos/builtin/packages/mysql/package.py
index d94ad4fd3f..7388faf343 100644
--- a/var/spack/repos/builtin/packages/mysql/package.py
+++ b/var/spack/repos/builtin/packages/mysql/package.py
@@ -81,7 +81,7 @@ class Mysql(CMakePackage):
# 8.0.19+
depends_on('boost@1.70.0 cxxstd=98', type='build', when='@8.0.19: cxxstd=98')
depends_on('boost@1.70.0 cxxstd=11', type='build', when='@8.0.19: cxxstd=11')
- depends_on('boost@1.70.0 cxxstd=11', type='build', when='@8.0.19: cxxstd=14')
+ depends_on('boost@1.70.0 cxxstd=14', type='build', when='@8.0.19: cxxstd=14')
depends_on('boost@1.70.0 cxxstd=17', type='build', when='@8.0.19: cxxstd=17')
# 8.0.16--8.0.18
depends_on('boost@1.69.0 cxxstd=98', type='build', when='@8.0.16:8.0.18 cxxstd=98')