diff options
author | vvolkl <valentin.volkl@cern.ch> | 2020-11-24 12:19:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-24 11:19:10 +0000 |
commit | 28a3b30c53b8559843e6f5cdf8e065c30e134f0b (patch) | |
tree | 36b30fd9faa8d103b028b7fc8e4c3258663a1c56 | |
parent | 4e35df4b61c2909a6446451c1633425658606d4a (diff) | |
download | spack-28a3b30c53b8559843e6f5cdf8e065c30e134f0b.tar.gz spack-28a3b30c53b8559843e6f5cdf8e065c30e134f0b.tar.bz2 spack-28a3b30c53b8559843e6f5cdf8e065c30e134f0b.tar.xz spack-28a3b30c53b8559843e6f5cdf8e065c30e134f0b.zip |
[root] fix rootfit/roofit variant (#20051)
* [root] fix rootfit/roofit variant
fix typo
* Update var/spack/repos/builtin/packages/root/package.py
Co-authored-by: Hadrien G. <knights_of_ni@gmx.com>
Co-authored-by: Hadrien G. <knights_of_ni@gmx.com>
-rw-r--r-- | var/spack/repos/builtin/packages/root/package.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/root/package.py b/var/spack/repos/builtin/packages/root/package.py index 97389545ce..f5747b1c56 100644 --- a/var/spack/repos/builtin/packages/root/package.py +++ b/var/spack/repos/builtin/packages/root/package.py @@ -138,7 +138,7 @@ class Root(CMakePackage): description='Enable R ROOT bindings') variant('rpath', default=True, description='Enable RPATH') - variant('rootfit', default=True, + variant('roofit', default=True, description='Build the libRooFit advanced fitting package') variant('root7', default=False, description='Enable ROOT 7 support') @@ -392,7 +392,7 @@ class Root(CMakePackage): define_from_variant('qtgsi', 'qt4'), # See conflicts define_from_variant('r'), define('rfio', False), - define('roofit', False), + define_from_variant('roofit'), define_from_variant('root7'), # See conflicts define('ruby', False), define('sapdb', False), |