diff options
author | bernhardkaindl <43588962+bernhardkaindl@users.noreply.github.com> | 2021-09-25 04:16:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-24 20:16:59 -0600 |
commit | 2eddc60baa67dbfa3bbfef38d1f18d3dc43774dd (patch) | |
tree | 4983b6952bebbb633b71586465cef1037cbac4dc | |
parent | 13d313d3ad6aab33afc22d1c3750d29a195dc427 (diff) | |
download | spack-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.
-rw-r--r-- | var/spack/repos/builtin/packages/tauola/package.py | 2 |
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'), |