aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib
diff options
context:
space:
mode:
authorGravatar ccalvarin <ccalvarin@google.com>2018-02-23 15:23:06 -0800
committerGravatar Copybara-Service <copybara-piper@google.com>2018-02-23 15:25:20 -0800
commit62476a2738456c14bf92b6bcc81ade2c93ca7e87 (patch)
tree2c81d6598eedb7868abcd288d72eab47fc9af967 /src/main/java/com/google/devtools/build/lib
parent14e549cc6596f67ed22c1bac0819f0775e4fb806 (diff)
Flip --expand_configs_in_place to true by default in Bazel.
See https://blog.bazel.build/2018/01/19/config-parsing-order.html for context on this change. RELNOTES: --config flags now expand in place by default. PiperOrigin-RevId: 186831701
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib')
-rw-r--r--src/main/java/com/google/devtools/build/lib/runtime/BlazeServerStartupOptions.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/runtime/BlazeServerStartupOptions.java b/src/main/java/com/google/devtools/build/lib/runtime/BlazeServerStartupOptions.java
index c2290ca917..8cccbacbfe 100644
--- a/src/main/java/com/google/devtools/build/lib/runtime/BlazeServerStartupOptions.java
+++ b/src/main/java/com/google/devtools/build/lib/runtime/BlazeServerStartupOptions.java
@@ -430,7 +430,7 @@ public class BlazeServerStartupOptions extends OptionsBase {
@Option(
name = "expand_configs_in_place",
- defaultValue = "false",
+ defaultValue = "true", // NOTE: purely decorative!
category = "server startup",
documentationCategory = OptionDocumentationCategory.BAZEL_CLIENT_OPTIONS,
effectTags = {OptionEffectTag.BAZEL_INTERNAL_CONFIGURATION, OptionEffectTag.CHANGES_INPUTS},