From: Paul Brossier Date: Thu, 17 Jan 2019 13:41:08 +0000 (+0100) Subject: [waf] fix hdf5 selection X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=6f330f12638c34681cb0112cd0af883874f1304c;p=aubio.git [waf] fix hdf5 selection --- 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'],