diff options
author | Mathew Robinson <chasinglogic@gmail.com> | 2019-03-04 15:17:11 -0500 |
---|---|---|
committer | Mathew Robinson <chasinglogic@gmail.com> | 2019-03-05 10:26:48 -0500 |
commit | a4105a2ae28505fc24b2d24d08334e3a529ddaf9 (patch) | |
tree | 5e21024390dae28bb65f572d24f3bd1b57b64596 /SConstruct | |
parent | 32a067938731d184b271ba3d7f43ca6727e3109c (diff) | |
download | mongo-a4105a2ae28505fc24b2d24d08334e3a529ddaf9.tar.gz |
SERVER-39945 Update requires to point to new variable name
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index a0fc3b2882f..057cf32fa64 100644 --- a/SConstruct +++ b/SConstruct @@ -3871,7 +3871,7 @@ env.Alias('all', allTargets) if should_dagger: dependencyDb = env.Alias("dagger", env.Dagger('library_dependency_graph.json')) # Require everything to be built before trying to extract build dependency information - env.Requires(dependencyDb, all) + env.Requires(dependencyDb, allTargets) # We don't want installing files to cause them to flow into the cache, # since presumably we can re-install them from the origin if needed. |