Turning off parallel during make install for parallel-netcdf. (#8186)

This commit is contained in:
Jon Rood 2018-05-18 11:12:43 -06:00 committed by Adam J. Stewart
parent c4cc6cde30
commit 5641c1923b

View File

@ -73,3 +73,7 @@ def configure_args(self):
args.append('--disable-fortran')
return args
def install(self, spec, prefix):
# Installation fails in parallel
make('install', parallel=False)