mirror of
https://github.com/samba-team/samba.git
synced 2025-08-03 04:22:09 +03:00
waf-symbols: don't look for symbol lists in GENERATOR targets
generated header files are not object files Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
@ -447,7 +447,7 @@ def check_dependencies(bld, t):
|
||||
|
||||
deps = set(t.samba_deps)
|
||||
for d in t.samba_deps:
|
||||
if targets[d] in [ 'EMPTY', 'DISABLED', 'SYSLIB' ]:
|
||||
if targets[d] in [ 'EMPTY', 'DISABLED', 'SYSLIB', 'GENERATOR' ]:
|
||||
continue
|
||||
bld.ASSERT(d in bld.env.public_symbols, "Failed to find symbol list for dependency '%s'" % d)
|
||||
diff = remaining.intersection(bld.env.public_symbols[d])
|
||||
|
Reference in New Issue
Block a user