summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorGeorge Hartzell <hartzell@alerce.com>2017-06-05 12:14:49 -0700
committerAdam J. Stewart <ajstewart426@gmail.com>2017-06-05 14:14:49 -0500
commit6b9d485e0620cf4dbc97e02cf24f87afab1a8910 (patch)
treeb4930af4a665ac080286177a7810969014a771ca /var
parentbfb45ba1cec521ea7ba25d6d248de1f913dde0c7 (diff)
downloadspack-6b9d485e0620cf4dbc97e02cf24f87afab1a8910.tar.gz
spack-6b9d485e0620cf4dbc97e02cf24f87afab1a8910.tar.bz2
spack-6b9d485e0620cf4dbc97e02cf24f87afab1a8910.tar.xz
spack-6b9d485e0620cf4dbc97e02cf24f87afab1a8910.zip
Disable parallel builds for bamutil (#4430)
I've had non-repeatable failures in my CI runs on all three clusters at the bamutil's step. In each case there are .o or .so files that are corrupt or truncated. I suspect that the homebrewed bamutil Makefile scheme doesn't actually support parallel builds.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/bamutil/package.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/bamutil/package.py b/var/spack/repos/builtin/packages/bamutil/package.py
index 1c1268f7f1..89aaa0e9ac 100644
--- a/var/spack/repos/builtin/packages/bamutil/package.py
+++ b/var/spack/repos/builtin/packages/bamutil/package.py
@@ -40,6 +40,8 @@ class Bamutil(MakefilePackage):
# https://github.com/statgen/libStatGen/issues/9
patch('libstatgen-issue-9.patch', when='@1.0.13:')
+ parallel = False
+
@property
def install_targets(self):
return ['install', 'INSTALLDIR={0}'.format(self.prefix.bin)]