removed Node.search (use Node.search_node) and an old compiler_cc references

This commit is contained in:
Thomas Nagy 2013-05-26 21:43:27 +02:00
parent 5c6d626048
commit e8eafe4b9b
2 changed files with 0 additions and 6 deletions

View File

@ -580,8 +580,6 @@ def load_tool(tool, tooldir=None):
"""
if tool == 'java':
tool = 'javaw' # jython
elif tool == 'compiler_cc':
tool = 'compiler_c' # TODO remove in waf 1.8
else:
tool = tool.replace('++', 'xx')

View File

@ -798,10 +798,6 @@ class Node(object):
self.cache_sig = ret = self.sig
return ret
# TODO Waf 1.8
search = search_node
pickle_lock = Utils.threading.Lock()
"""Lock mandatory for thread-safe node serialization"""