1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-25 17:57:42 +03:00

build: lib needs to take a list when more than 1

This commit is contained in:
Andrew Tridgell 2010-03-20 17:27:23 +11:00
parent 593c28b717
commit 1130f8f8d7

View File

@ -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