Skip to content
This repository was archived by the owner on Jul 31, 2023. It is now read-only.

Commit 3aa11f2

Browse files
jinmelg-easy
authored andcommitted
Fix build build break with bazel 0.25 (#316)
We were picking up ABSL flags transitively. After bazelbuild/bazel#5636 this no longer works. load() the flags directly from ABSL's GENERATED_copts.bzl.
1 parent c59a897 commit 3aa11f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opencensus/copts.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ We use the same flags as absl, plus turn some warnings into errors.
2222
"""
2323

2424
load(
25-
"@com_google_absl//absl:copts/configure_copts.bzl",
25+
"@com_google_absl//absl:copts/GENERATED_copts.bzl",
2626
"ABSL_GCC_FLAGS",
2727
"ABSL_GCC_TEST_FLAGS",
2828
"ABSL_LLVM_FLAGS",

0 commit comments

Comments
 (0)