blob: e18dbf41f7b5083aaba157a80e6e8d16a8f640c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# breaking a cycle with pnetcdf-openmpi
depends=(${depends[@]//"pnetcdf-${_mpi}"/})
# "Unable to support CDF5 feature because size_t is less than 8 bytes"
eval "$(
declare -f build | \
sed '
s/-DENABLE_CDF5=ON/-DENABLE_CDF5=OFF/g
s/-DENABLE_PNETCDF=ON/-DENABLE_PNETCDF=OFF/g
'
)"
|