From e5fac8175fbdd158139ff2446e83718b2a85b8b4 Mon Sep 17 00:00:00 2001 From: Nathan Harmata Date: Wed, 16 Mar 2016 21:31:16 +0000 Subject: Make help documentation for --experimental_output_tree_tracking more general. -- MOS_MIGRATED_REVID=117383853 --- .../com/google/devtools/build/lib/buildtool/BuildRequest.java | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'src/main/java/com/google/devtools/build/lib') 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( -- cgit v1.2.3