remove cray-specific path modifications from pkgconfig providers (now handled in cray platform) (#7406)

This commit is contained in:
scheibelp 2018-03-21 11:20:40 -07:00 committed by Adam J. Stewart
parent 500ac793bc
commit 849078e95a
2 changed files with 2 additions and 13 deletions

View file

@ -47,10 +47,7 @@ class PkgConfig(AutotoolsPackage):
parallel = False
def setup_dependent_environment(self, spack_env, run_env, dependent_spec):
"""spack built pkg-config on cray's requires adding /usr/local/
and /usr/lib64/ to PKG_CONFIG_PATH in order to access cray '.pc'
files.
Adds the ACLOCAL path for autotools."""
"""Adds the ACLOCAL path for autotools."""
spack_env.append_path('ACLOCAL_PATH',
join_path(self.prefix.share, 'aclocal'))

View file

@ -41,17 +41,9 @@ class Pkgconf(AutotoolsPackage):
provides('pkgconfig')
def setup_dependent_environment(self, spack_env, run_env, dependent_spec):
"""spack built pkg-config on cray's requires adding /usr/local/
and /usr/lib64/ to PKG_CONFIG_PATH in order to access cray '.pc'
files.
Adds the ACLOCAL path for autotools."""
"""Adds the ACLOCAL path for autotools."""
spack_env.append_path('ACLOCAL_PATH',
join_path(self.prefix.share, 'aclocal'))
if 'platform=cray' in self.spec:
spack_env.append_path('PKG_CONFIG_PATH',
'/usr/lib64/pkgconfig')
spack_env.append_path('PKG_CONFIG_PATH',
'/usr/local/lib64/pkgconfig')
@run_after('install')
def link_pkg_config(self):