Skip to content
Snippets Groups Projects
Commit cc12fd46 authored by Sergey Kosukhin's avatar Sergey Kosukhin
Browse files

Fix skip conditions in 'pio_write_run.in'.

parent 1d6ac92f
No related branches found
No related tags found
2 merge requests!34Version 2.2.0,!13Consolidation with CDI-PIO (develop)
......@@ -21,12 +21,15 @@ case ${suffix} in
;;
grb2)
@HAVE_LIBGRIB_API_FALSE@exit 77
test 'x@ENABLE_GRIB@' = xyes || exit 77
;;
nc)
@ENABLE_NETCDF_FALSE@exit 77
;;
nc|nc2)
test 'x@ENABLE_NETCDF@' = xyes || exit 77
nc2)
test 'x@ENABLE_NC2@' = xyes || exit 77
;;
nc4)
test 'x@ENABLE_NETCDF@' = xyes || exit 77
test 'x@ENABLE_NC4@' = xyes || exit 77
;;
*)
......
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