aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib')
-rw-r--r--src/main/java/com/google/devtools/build/lib/buildtool/BuildRequest.java11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/buildtool/BuildRequest.java b/src/main/java/com/google/devtools/build/lib/buildtool/BuildRequest.java
index 0e625cff2e..9afcc6093b 100644
--- a/src/main/java/com/google/devtools/build/lib/buildtool/BuildRequest.java
+++ b/src/main/java/com/google/devtools/build/lib/buildtool/BuildRequest.java
@@ -86,8 +86,8 @@ public class BuildRequest implements OptionsClassProvider {
defaultValue = "null",
category = "verbosity",
converter = OptionsUtils.PathFragmentConverter.class,
- help = "Causes Blaze to explain each executed step of the build. "
- + "The explanation is written to the specified log file.")
+ help = "Causes " + Constants.PRODUCT_NAME + " to explain each executed step of the "
+ + "build. The explanation is written to the specified log file.")
public PathFragment explanationPath;
@Option(name = "verbose_explanations",
@@ -255,9 +255,10 @@ public class BuildRequest implements OptionsClassProvider {
@Option(name = "experimental_output_tree_tracking",
defaultValue = "false",
category = "undocumented",
- help = "If set, communicate with objsfd to track when files in the output tree have "
- + "been modified externally (not by Blaze). This should improve incremental build "
- + "speed.")
+ help = "If set, tell the output service (if any) to track when files in the output "
+ + "tree have been modified externally (not by " + Constants.PRODUCT_NAME + "). "
+ + "This should improve incremental build speed when an appropriate output service "
+ + "is enabled.")
public boolean finalizeActions;
@Option(