aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/bazel/rules/cpp/BazelCppRuleClasses.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/bazel/rules/cpp/BazelCppRuleClasses.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/bazel/rules/cpp/BazelCppRuleClasses.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/bazel/rules/cpp/BazelCppRuleClasses.java b/src/main/java/com/google/devtools/build/lib/bazel/rules/cpp/BazelCppRuleClasses.java
index 7115da9483..32b70795d6 100644
--- a/src/main/java/com/google/devtools/build/lib/bazel/rules/cpp/BazelCppRuleClasses.java
+++ b/src/main/java/com/google/devtools/build/lib/bazel/rules/cpp/BazelCppRuleClasses.java
@@ -259,7 +259,8 @@ public class BazelCppRuleClasses {
so be careful about header files included elsewhere.</p>
<!-- #END_BLAZE_RULE.ATTRIBUTE -->*/
.add(attr("copts", STRING_LIST))
- .add(attr("$stl", LABEL).value(env.getLabel("//tools/cpp:stl")))
+ .add(attr("$stl", LABEL).value(env.getLabel(
+ Constants.TOOLS_REPOSITORY + "//tools/cpp:stl")))
.add(attr(":stl", LABEL).value(STL))
.build();
}
@@ -532,7 +533,7 @@ public class BazelCppRuleClasses {
// Every cc_rule depends implicitly on STL to make
// sure that the correct headers are used for inclusion. The only exception is
// STL itself to avoid cycles in the dependency graph.
- Label stl = env.getLabel("//tools/cpp:stl");
+ Label stl = env.getLabel(Constants.TOOLS_REPOSITORY + "//tools/cpp:stl");
return rule.getLabel().equals(stl) ? null : stl;
}
}))