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

Commit

Permalink
Fix build build break with bazel 0.25 (#316)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jinmel authored and g-easy committed May 10, 2019
1 parent c59a897 commit 3aa11f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opencensus/copts.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ We use the same flags as absl, plus turn some warnings into errors.
"""

load(
"@com_google_absl//absl:copts/configure_copts.bzl",
"@com_google_absl//absl:copts/GENERATED_copts.bzl",
"ABSL_GCC_FLAGS",
"ABSL_GCC_TEST_FLAGS",
"ABSL_LLVM_FLAGS",
Expand Down

0 comments on commit 3aa11f2

Please sign in to comment.