summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorAlexander Neben <alexander.neben@mongodb.com>2022-05-26 17:11:23 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-05-26 19:04:22 +0000
commit0cc2ede603fd954224356ea2bde2cad8bea65afa (patch)
treebc7319f0504cbfddb80448b635a5ad30b87f33ee /SConstruct
parent4fa0b32744e8d13312ebac0d9b20392e07a68f9c (diff)
downloadmongo-0cc2ede603fd954224356ea2bde2cad8bea65afa.tar.gz
SERVER-66580 Fixed tense for ninja files
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct6
1 files changed, 3 insertions, 3 deletions
diff --git a/SConstruct b/SConstruct
index 5cd00221797..ce5366be543 100644
--- a/SConstruct
+++ b/SConstruct
@@ -5199,7 +5199,7 @@ if get_option('ninja') != 'disabled':
env.NinjaRule(
"WINLINK",
"$env$WINLINK @$out.rsp",
- description="Linking $out",
+ description="Linked $out",
deps=None,
pool="local_pool",
use_depfile=False,
@@ -5262,7 +5262,7 @@ if get_option('ninja') != 'disabled':
env.NinjaRule(
rule="IDLC",
command="cmd /c $cmd" if env.TargetOSIs("windows") else "$cmd",
- description="Generating $out",
+ description="Generated $out",
deps="msvc",
pool="local_pool",
)
@@ -5311,7 +5311,7 @@ if get_option('ninja') != 'disabled':
env.NinjaRule(
rule="TEST_LIST",
- description="Compiling test list: $out",
+ description="Compiled test list: $out",
command=cmd,
)
env.NinjaRegisterFunctionHandler("test_list_builder_action", ninja_test_list_builder)