diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-20 17:27:23 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:26:57 +1000 |
commit | 1130f8f8d778da2da42d19392aafea520a2e189c (patch) | |
tree | 40646da80ef7b70d35980346b97bbba36dfd88cd | |
parent | 593c28b717b081bdd6e19ebdb086da88834a7385 (diff) | |
download | samba-1130f8f8d778da2da42d19392aafea520a2e189c.tar.gz samba-1130f8f8d778da2da42d19392aafea520a2e189c.tar.bz2 samba-1130f8f8d778da2da42d19392aafea520a2e189c.zip |
build: lib needs to take a list when more than 1
-rw-r--r-- | buildtools/wafsamba/samba_autoconf.py | 2 |
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 |