From 1130f8f8d778da2da42d19392aafea520a2e189c Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 20 Mar 2010 17:27:23 +1100 Subject: [PATCH] build: lib needs to take a list when more than 1 --- buildtools/wafsamba/samba_autoconf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildtools/wafsamba/samba_autoconf.py b/buildtools/wafsamba/samba_autoconf.py index 59a70aa5f19..0b268600334 100644 --- a/buildtools/wafsamba/samba_autoconf.py +++ b/buildtools/wafsamba/samba_autoconf.py @@ -318,7 +318,7 @@ def CHECK_FUNCS_IN(conf, list, library, mandatory=False, checklibc=False): ret = True for f in remaining: - if not conf.check(function_name=f, lib=library, header_name=conf.env.hlist): + if not conf.check(function_name=f, lib=TO_LIST(library), header_name=conf.env.hlist): ret = False return ret -- 2.34.1