summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorbernhardkaindl <43588962+bernhardkaindl@users.noreply.github.com>2021-09-25 04:16:59 +0200
committerGitHub <noreply@github.com>2021-09-24 20:16:59 -0600
commit2eddc60baa67dbfa3bbfef38d1f18d3dc43774dd (patch)
tree4983b6952bebbb633b71586465cef1037cbac4dc /var
parent13d313d3ad6aab33afc22d1c3750d29a195dc427 (diff)
downloadspack-2eddc60baa67dbfa3bbfef38d1f18d3dc43774dd.tar.gz
spack-2eddc60baa67dbfa3bbfef38d1f18d3dc43774dd.tar.bz2
spack-2eddc60baa67dbfa3bbfef38d1f18d3dc43774dd.tar.xz
spack-2eddc60baa67dbfa3bbfef38d1f18d3dc43774dd.zip
tauola: Fix build: The current build wants lhapdf headers by default (#26154)
The hand-written `configure` script of this package does not handle --without-<feature> at all. The source wants to use `lhapdf` headers even if support of lhapdf is not indicated using `--with-lhapdf`. Enable the variant `lhapdf` by default: It fixes the build of the current package and provides the TauSpinner feature as well.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/tauola/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/tauola/package.py b/var/spack/repos/builtin/packages/tauola/package.py
index 5122aef89b..5f54f1ae28 100644
--- a/var/spack/repos/builtin/packages/tauola/package.py
+++ b/var/spack/repos/builtin/packages/tauola/package.py
@@ -18,7 +18,7 @@ class Tauola(AutotoolsPackage):
variant('hepmc', default=True, description="Enable hepmc 2.x support")
variant('hepmc3', default=False, description="Enable hepmc3 support")
- variant('lhapdf', default=False, description="Enable lhapdf support")
+ variant('lhapdf', default=True, description="Enable lhapdf support")
variant('cxxstd',
default='11',
values=('11', '14', '17', '20'),