From df692c7d396ce957475968260f7ec45e0b509f8a 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 78f5ae2c..a37b628d 100644 --- a/wscript +++ b/wscript @@ -523,7 +523,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