Skip to content
Snippets Groups Projects
Commit 5cd59374 authored by Jon Rood's avatar Jon Rood Committed by Peter Scheibel
Browse files

PNetCDF package: enable option required by NetCDF (#11420)

The --enable-relax-coord-bound option was added in 1.8.0. NetCDF
4.6.3 enabled relax coords by default and required it from PNetCDF.
PNetCDF 1.10.0 enabled it by default but for versions between 1.8.0
and 1.10.0 it should be enabled explicitly.
parent c54f23d4
No related branches found
No related tags found
No related merge requests found
...@@ -70,6 +70,9 @@ def configure_args(self): ...@@ -70,6 +70,9 @@ def configure_args(self):
if '~fortran' in spec: if '~fortran' in spec:
args.append('--disable-fortran') args.append('--disable-fortran')
if spec.satisfies('@1.8.0:'):
args.append('--enable-relax-coord-bound')
return args return args
def install(self, spec, prefix): def install(self, spec, prefix):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment