0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-28 16:24:56 +01:00

SERVER-29036 The IDL compiler invocation must depend on the IDL compiler sources

This commit is contained in:
Andrew Morrow 2017-05-01 22:33:35 -04:00
parent 49cf0ebd80
commit fff318ff19

4
site_scons/site_tools/idl_tool.py Normal file → Executable file
View File

@ -53,6 +53,8 @@ def idl_scanner(node, env, path):
deps_list = deps_str.splitlines()
nodes_deps_list = [ env.File(d) for d in deps_list]
nodes_deps_list.extend(env.Glob('#buildscripts/idl/*.py'))
nodes_deps_list.extend(env.Glob('#buildscripts/idl/idl/*.py'))
return nodes_deps_list
@ -73,4 +75,4 @@ def generate(env):
def exists(env):
return True
return True