aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib
diff options
context:
space:
mode:
authorGravatar Nathan Harmata <nharmata@google.com>2016-03-16 21:31:16 +0000
committerGravatar Lukacs Berki <lberki@google.com>2016-03-17 10:08:00 +0000
commite5fac8175fbdd158139ff2446e83718b2a85b8b4 (patch)
treefc281a9c2e2be3621f59ea8dccdffef87cf05d2a /src/main/java/com/google/devtools/build/lib
parent65b91b267d6b5b31437d4f753570121c84c7bc9e (diff)
Make help documentation for --experimental_output_tree_tracking more general.
-- MOS_MIGRATED_REVID=117383853
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(