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

Fix skip conditions in 'pio_write_run.in'.

parent 01b59360
No related branches found
No related tags found
1 merge request!14Draft: K202125/cdi 1.8.x pio merge followup
......@@ -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