From ea8793f8f536a79e2b8431a82bf8b4243e5e6031 Mon Sep 17 00:00:00 2001 From: "Adam J. Stewart" Date: Fri, 17 Apr 2020 16:30:21 -0500 Subject: AutotoolsPackage: add aclocal for all build deps (#15784) --- lib/spack/spack/build_systems/autotools.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/spack/spack/build_systems/autotools.py b/lib/spack/spack/build_systems/autotools.py index 6591b6495b..df17d2ddf1 100644 --- a/lib/spack/spack/build_systems/autotools.py +++ b/lib/spack/spack/build_systems/autotools.py @@ -219,11 +219,11 @@ class AutotoolsPackage(PackageBase): # This line is what is needed most of the time # --install, --verbose, --force autoreconf_args = ['-ivf'] - if 'pkgconfig' in spec: - autoreconf_args += [ - '-I', - os.path.join(spec['pkgconfig'].prefix, 'share', 'aclocal'), - ] + for dep in spec.dependencies(deptype='build'): + if os.path.exists(dep.prefix.share.aclocal): + autoreconf_args.extend([ + '-I', dep.prefix.share.aclocal + ]) autoreconf_args += self.autoreconf_extra_args m.autoreconf(*autoreconf_args) -- cgit v1.2.3-60-g2f50