From f8e79be2c155f26abfa7e5e3fddd2f453c2f943a Mon Sep 17 00:00:00 2001 From: David Disseldorp Date: Sun, 18 Aug 2019 11:24:37 +0200 Subject: build: fix mandatory typo in zlib configure check This ensures that waf correctly fails during configure if zlib is missing. msg can also be dropped as it matches the waf validate_cfg() default (ignoring the quotes). Signed-off-by: David Disseldorp Reviewed-by: Andrew Bartlett Autobuild-User(master): Andrew Bartlett Autobuild-Date(master): Tue Aug 20 06:58:12 UTC 2019 on sn-devel-184 --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index c4848389feb..579d35f2719 100644 --- a/wscript +++ b/wscript @@ -169,7 +169,7 @@ def configure(conf): conf.CHECK_CFG(package='zlib', minversion='1.2.3', args='--cflags --libs', - msg='Checking for zlib', mandetory=True) + mandatory=True) conf.CHECK_FUNCS_IN('inflateInit2', 'z') if conf.CHECK_FOR_THIRD_PARTY(): -- cgit v1.2.1