diff --git a/var/spack/repos/builtin/packages/pkgconf/package.py b/var/spack/repos/builtin/packages/pkgconf/package.py index 3cdc15b4011..7f2d039fcba 100644 --- a/var/spack/repos/builtin/packages/pkgconf/package.py +++ b/var/spack/repos/builtin/packages/pkgconf/package.py @@ -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))