summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba/samba_autoconf.py
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-03-20 17:27:23 +1100
committerAndrew Tridgell <tridge@samba.org>2010-04-06 20:26:57 +1000
commit1130f8f8d778da2da42d19392aafea520a2e189c (patch)
tree40646da80ef7b70d35980346b97bbba36dfd88cd /buildtools/wafsamba/samba_autoconf.py
parent593c28b717b081bdd6e19ebdb086da88834a7385 (diff)
downloadsamba-1130f8f8d778da2da42d19392aafea520a2e189c.tar.gz
samba-1130f8f8d778da2da42d19392aafea520a2e189c.tar.bz2
samba-1130f8f8d778da2da42d19392aafea520a2e189c.zip
build: lib needs to take a list when more than 1
Diffstat (limited to 'buildtools/wafsamba/samba_autoconf.py')
-rw-r--r--buildtools/wafsamba/samba_autoconf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_autoconf.py b/buildtools/wafsamba/samba_autoconf.py
index 59a70aa5f1..0b26860033 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