summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba/symbols.py
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2011-06-10 12:16:59 +1000
committerAndrew Tridgell <tridge@samba.org>2011-06-10 17:21:26 +1000
commit683f9868eb13cfaaf0da81bf002a85b81c928f51 (patch)
treef91aea34998d45c2aa8c0aefadf93ec004e939e5 /buildtools/wafsamba/symbols.py
parentae1414e79698c0c506aabd7458c4fbae8cc8fcf5 (diff)
downloadsamba-683f9868eb13cfaaf0da81bf002a85b81c928f51.tar.gz
samba-683f9868eb13cfaaf0da81bf002a85b81c928f51.tar.bz2
samba-683f9868eb13cfaaf0da81bf002a85b81c928f51.zip
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>
Diffstat (limited to 'buildtools/wafsamba/symbols.py')
-rw-r--r--buildtools/wafsamba/symbols.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/symbols.py b/buildtools/wafsamba/symbols.py
index ed195176e6..dfab71c2c4 100644
--- a/buildtools/wafsamba/symbols.py
+++ b/buildtools/wafsamba/symbols.py
@@ -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])