aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/analysis
diff options
context:
space:
mode:
authorGravatar Damien Martin-Guillerez <dmarting@google.com>2016-06-09 11:15:34 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2016-06-09 11:27:23 +0000
commitff30a7319fc495c1f2d4c58b233e7bd7690da27f (patch)
treefddbd8f5740a618428ea0aa340bff778e56aade4 /src/main/java/com/google/devtools/build/lib/analysis
parentcc993c26047f8d459711ed211338570ce7c1576c (diff)
Turn --legacy_external_runfiles back on by default
--nolegacy_external_runfiles breaks $(location @repo//) syntax for the runfiles case. This will be fixed when the structure of external repository in the execroot will be the same as in the runfiles tree so let flip that flag back on. Fixes #1356. RELNOTES: Revert of commit bd69849378112c3b05bc218e57cdafca82860710, legacy runfiles tree paths are still supported by default. -- MOS_MIGRATED_REVID=124445792
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/analysis')
-rw-r--r--src/main/java/com/google/devtools/build/lib/analysis/config/BuildConfiguration.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/analysis/config/BuildConfiguration.java b/src/main/java/com/google/devtools/build/lib/analysis/config/BuildConfiguration.java
index c238ca7e40..3f8c6be31f 100644
--- a/src/main/java/com/google/devtools/build/lib/analysis/config/BuildConfiguration.java
+++ b/src/main/java/com/google/devtools/build/lib/analysis/config/BuildConfiguration.java
@@ -709,7 +709,7 @@ public final class BuildConfiguration {
public boolean buildRunfiles;
@Option(name = "legacy_external_runfiles",
- defaultValue = "false",
+ defaultValue = "true",
category = "strategy",
help = "If true, build runfiles symlink forests for external repositories under "
+ ".runfiles/wsname/external/repo (in addition to .runfiles/repo).")