summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/lhapdf/package.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/lhapdf/package.py b/var/spack/repos/builtin/packages/lhapdf/package.py
index 8672c0f389..43ae27a51b 100644
--- a/var/spack/repos/builtin/packages/lhapdf/package.py
+++ b/var/spack/repos/builtin/packages/lhapdf/package.py
@@ -34,9 +34,11 @@ class Lhapdf(AutotoolsPackage):
extends('python', when='+python')
depends_on('py-cython', type='build', when='+python')
depends_on('py-setuptools', type='build', when='+python')
+ depends_on('gettext', type='build', when='+python')
def configure_args(self):
args = ['FCFLAGS=-O3', 'CFLAGS=-O3', 'CXXFLAGS=-O3',
- 'LIBS=-L' + self.spec['python'].prefix.lib]
+ 'LIBS=-L' + self.spec['python'].prefix.lib +
+ ' -L' + self.spec['gettext'].prefix.lib]
args.extend(self.enable_or_disable('python'))
return args