From 5bbbfe94462c06aa99fd6d4ee802955135d1de9b Mon Sep 17 00:00:00 2001 From: Michael Kuhn Date: Thu, 23 Nov 2017 16:05:38 +0100 Subject: Introduce virtual dependency pkgconfig (#5198) There are two providers, pkgconf and pkg-config, with the former being the default provider. --- lib/spack/spack/build_systems/autotools.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/spack/spack/build_systems/autotools.py b/lib/spack/spack/build_systems/autotools.py index 8f2af3e21e..f39eed6997 100644 --- a/lib/spack/spack/build_systems/autotools.py +++ b/lib/spack/spack/build_systems/autotools.py @@ -221,10 +221,10 @@ class AutotoolsPackage(PackageBase): # This line is what is needed most of the time # --install, --verbose, --force autoreconf_args = ['-ivf'] - if 'pkg-config' in spec: + if 'pkgconfig' in spec: autoreconf_args += [ '-I', - join_path(spec['pkg-config'].prefix, 'share', 'aclocal'), + join_path(spec['pkgconfig'].prefix, 'share', 'aclocal'), ] autoreconf_args += self.autoreconf_extra_args m.autoreconf(*autoreconf_args) -- cgit v1.2.3-60-g2f50