summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomoki, Karatsu <49965247+t-karatsu@users.noreply.github.com>2020-06-16 21:51:29 +0900
committerGitHub <noreply@github.com>2020-06-16 14:51:29 +0200
commit4b48f70393a20ef65f5e1394226d3829997431c5 (patch)
treefd0cc2a9d3efa51983dd5e15d5e6c18e354c084c
parent0f484380f5ceb86913ed671e1e380df260c82fab (diff)
downloadspack-4b48f70393a20ef65f5e1394226d3829997431c5.tar.gz
spack-4b48f70393a20ef65f5e1394226d3829997431c5.tar.bz2
spack-4b48f70393a20ef65f5e1394226d3829997431c5.tar.xz
spack-4b48f70393a20ef65f5e1394226d3829997431c5.zip
gobject-introspection: build sequentially when using the Fujitsu compiler. (#17092)
-rw-r--r--var/spack/repos/builtin/packages/gobject-introspection/package.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/gobject-introspection/package.py b/var/spack/repos/builtin/packages/gobject-introspection/package.py
index 294d1ba46e..20823fd77f 100644
--- a/var/spack/repos/builtin/packages/gobject-introspection/package.py
+++ b/var/spack/repos/builtin/packages/gobject-introspection/package.py
@@ -73,3 +73,7 @@ class GobjectIntrospection(Package):
def setup_build_environment(self, env):
env.set('SPACK_SBANG', "%s/bin/sbang" % spack_root)
+
+ @property
+ def parallel(self):
+ return not self.spec.satisfies('%fj')