mirror of
https://github.com/samba-team/samba.git
synced 2025-02-02 09:47:23 +03:00
waf: prevent an error in the symbol checking code
This commit is contained in:
parent
7aef9c3fe0
commit
282984fdff
@ -361,7 +361,8 @@ def check_syslib_dependencies(bld, t):
|
||||
|
||||
features = TO_LIST(t.features)
|
||||
if 'pyembed' in features or 'pyext' in features:
|
||||
t.unsatisfied_symbols = t.unsatisfied_symbols.difference(bld.env.public_symbols['python'])
|
||||
if 'python' in bld.env.public_symbols:
|
||||
t.unsatisfied_symbols = t.unsatisfied_symbols.difference(bld.env.public_symbols['python'])
|
||||
|
||||
needed = {}
|
||||
for sym in t.unsatisfied_symbols:
|
||||
|
Loading…
x
Reference in New Issue
Block a user