1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-08 05:57:51 +03:00

waf: prevent an error in the symbol checking code

This commit is contained in:
Andrew Tridgell 2011-03-23 12:15:33 +11:00
parent 7aef9c3fe0
commit 282984fdff

View File

@ -361,6 +361,7 @@ def check_syslib_dependencies(bld, t):
features = TO_LIST(t.features)
if 'pyembed' in features or 'pyext' in features:
if 'python' in bld.env.public_symbols:
t.unsatisfied_symbols = t.unsatisfied_symbols.difference(bld.env.public_symbols['python'])
needed = {}