pkgconf: disable check due to missing dependencies (#24168)

This commit is contained in:
Valentin Volkl 2021-06-07 20:01:24 +02:00 committed by GitHub
parent 3d0bad465b
commit 2bdeaa1b48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,6 +58,12 @@ def setup_dependent_build_environment(self, env, dependent_spec):
"""Adds the ACLOCAL path for autotools."""
env.append_path('ACLOCAL_PATH', self.prefix.share.aclocal)
def check(self):
# TODO: running the checks needs kyua (a package not yet in spack)
# see TODO above
# thus disable the tests to be able to run --test=all for other specs
pass
@run_after('install')
def link_pkg_config(self):
symlink('pkgconf', '{0}/pkg-config'.format(self.prefix.bin))