1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00

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 <ddiss@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>

Autobuild-User(master): Andrew Bartlett <abartlet@samba.org>
Autobuild-Date(master): Tue Aug 20 06:58:12 UTC 2019 on sn-devel-184
This commit is contained in:
David Disseldorp 2019-08-18 11:24:37 +02:00 committed by Andrew Bartlett
parent b6516dbd24
commit f8e79be2c1

View File

@ -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():