Build Cube pckage with parallel make (only install phase serial) (#5001)

This commit is contained in:
Pramod S Kumbhar 2017-08-07 20:32:09 +02:00 committed by Adam J. Stewart
parent cf2a96a3f5
commit 8cbc7eeae4

View file

@ -36,9 +36,6 @@ class Cube(AutotoolsPackage):
homepage = "http://www.scalasca.org/software/cube-4.x/download.html"
url = "http://apps.fz-juelich.de/scalasca/releases/cube/4.2/dist/cube-4.2.3.tar.gz"
# Some versions fail with parallel builds/installs
parallel = False
version('4.3.5', 'e5dce986e3c6381ea3a5fcb66c553adc')
version('4.3.4', '50f73060f55311cb12c5b3cb354d59fa')
version('4.3.3', '07e109248ed8ffc7bdcce614264a2909')
@ -64,3 +61,6 @@ def configure_args(self):
configure_args.append('--without-gui')
return configure_args
def install(self, spec, prefix):
make('install', parallel=False)