aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/runtime/CommonCommandOptions.java
diff options
context:
space:
mode:
authorGravatar Laszlo Csomor <laszlocsomor@google.com>2015-07-16 12:47:38 +0000
committerGravatar Philipp Wollermann <philwo@google.com>2015-07-17 13:17:22 +0000
commit768b5ccdfad99e3ead5bd8c1c861b3f52506f748 (patch)
treeaab4c7c544699899d57b6bb6d648a7f95e061bf1 /src/main/java/com/google/devtools/build/lib/runtime/CommonCommandOptions.java
parent29e66457e0e2f44bde567956da2c6ddc5791249c (diff)
Say explicitly that --config=X ignores non-existent .rc file config sections.
-- MOS_MIGRATED_REVID=98394325
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/runtime/CommonCommandOptions.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/CommonCommandOptions.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/CommonCommandOptions.java b/src/main/java/com/google/devtools/build/lib/runtime/CommonCommandOptions.java
index ea96f436cd..f42eb6fe8a 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/CommonCommandOptions.java
+++ b/src/main/java/com/google/devtools/build/lib/runtime/CommonCommandOptions.java
@@ -103,7 +103,8 @@ public class CommonCommandOptions extends OptionsBase {
category = "misc",
allowMultiple = true,
help = "Selects additional config sections from the rc files; for every <command>, it "
- + "also pulls in the options from <command>:<config> if such a section exists. "
+ + "also pulls in the options from <command>:<config> if such a section exists; "
+ + "if the section does not exist, this flag is ignored. "
+ "Note that it is currently only possible to provide these options on the "
+ "command line, not in the rc files. The config sections and flag combinations "
+ "they are equivalent to are located in the tools/*.blazerc config files.")