summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Volkl <valentin.volkl@cern.ch>2021-06-07 20:01:24 +0200
committerGitHub <noreply@github.com>2021-06-07 12:01:24 -0600
commit2bdeaa1b482e68158ffdf2620e7d79c5fd69a7aa (patch)
tree2042c85f99b4bebccd233f12d793b361de0d8ad6
parent3d0bad465b41feb442eab67fe5b9d9134d76062a (diff)
downloadspack-2bdeaa1b482e68158ffdf2620e7d79c5fd69a7aa.tar.gz
spack-2bdeaa1b482e68158ffdf2620e7d79c5fd69a7aa.tar.bz2
spack-2bdeaa1b482e68158ffdf2620e7d79c5fd69a7aa.tar.xz
spack-2bdeaa1b482e68158ffdf2620e7d79c5fd69a7aa.zip
pkgconf: disable check due to missing dependencies (#24168)
-rw-r--r--var/spack/repos/builtin/packages/pkgconf/package.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/pkgconf/package.py b/var/spack/repos/builtin/packages/pkgconf/package.py
index 3cdc15b401..7f2d039fcb 100644
--- a/var/spack/repos/builtin/packages/pkgconf/package.py
+++ b/var/spack/repos/builtin/packages/pkgconf/package.py
@@ -58,6 +58,12 @@ class Pkgconf(AutotoolsPackage):
"""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))