From 6f330f12638c34681cb0112cd0af883874f1304c Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Thu, 17 Jan 2019 14:41:08 +0100 Subject: [PATCH] [waf] fix hdf5 selection --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index dda32f89..4d6fad60 100644 --- a/wscript +++ b/wscript @@ -464,7 +464,7 @@ def configure(ctx): if (ctx.options.enable_memcpy == True): ctx.define('HAVE_MEMCPY_HACKS', 1) - if (ctx.options.enable_hdf5 != True): + if (ctx.options.enable_hdf5 != False): ctx.check_cfg(package='hdf5', args='--cflags --libs', uselib_store='HDF5', mandatory=ctx.options.enable_hdf5) ctx.check(lib=['hdf5_hl'], use = ['HDF5'], -- 2.11.0