summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorTausif Rahman <tausif.rahman@mongodb.com>2022-05-10 19:58:36 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-05-10 21:53:46 +0000
commit610ca5864154d97ddd18d225a2c148a96260eadc (patch)
tree41bd94317a31f665b754ade7443e631ee28fdfa5 /SConstruct
parentcc0335394bee5441350a36fd9351d5746a6000d8 (diff)
downloadmongo-610ca5864154d97ddd18d225a2c148a96260eadc.tar.gz
Revert "SERVER-54107 compile_commands.json should have an order-only dependency on generated-sources"
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct5
1 files changed, 1 insertions, 4 deletions
diff --git a/SConstruct b/SConstruct
index 4b6e002b4eb..8cb6eafa7d0 100644
--- a/SConstruct
+++ b/SConstruct
@@ -5354,10 +5354,7 @@ env.AddMethod(injectModule, 'InjectModule')
if get_option('ninja') == 'disabled':
compileCommands = env.CompilationDatabase('compile_commands.json')
- # Initialize generated-sources Alias as a placeholder so that it can be used as a
- # dependency for compiledb. This Alias will be properly updated in other SConscripts.
- generatedSources = env.Alias("generated-sources")
- compileDb = env.Alias("compiledb", [compileCommands, generatedSources])
+ compileDb = env.Alias("compiledb", compileCommands)
msvc_version = ""