diff options
author | Daniel Moody <daniel.moody@mongodb.com> | 2020-11-03 05:48:25 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-12-22 21:57:21 +0000 |
commit | 00685daec7cbd9ff2f1ebf1e168e2621f681d4c9 (patch) | |
tree | e64172e0c01a9a9081a222061e4ce4ba8e6ae298 /site_scons | |
parent | fee7b1b5b7849f0a137de86c8134e95134390509 (diff) | |
download | mongo-00685daec7cbd9ff2f1ebf1e168e2621f681d4c9.tar.gz |
SERVER-52585 added global keyword to correctly track idl dependencies
(cherry picked from commit 083ef9b23f7c91d4af82252f3df1771b481318af)
Diffstat (limited to 'site_scons')
-rwxr-xr-x | site_scons/site_tools/idl_tool.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/site_scons/site_tools/idl_tool.py b/site_scons/site_tools/idl_tool.py index a51e7fd8344..dc94dc895f1 100755 --- a/site_scons/site_tools/idl_tool.py +++ b/site_scons/site_tools/idl_tool.py @@ -114,6 +114,7 @@ def generate(env): else None) env["IDLCSUFFIX"] = ".idl" + global IDL_GLOBAL_DEPS IDL_GLOBAL_DEPS = env.Glob("#buildscripts/idl/*.py") + env.Glob( "#buildscripts/idl/idl/*.py" ) |