mirror of https://github.com/bazelbuild/rules_cc
Fix empty glob in cc/private/BUILD
the glob pattern `**/*.bzl` doesn't match anything there, and this is bad for `--incompatible_disallow_empty_glob`. This PR removes the offending line.
This commit is contained in:
parent
7343c660a4
commit
5cbd830262
|
@ -15,7 +15,6 @@
|
|||
filegroup(
|
||||
name = "srcs",
|
||||
srcs = glob([
|
||||
"**/*.bzl",
|
||||
"**/BUILD",
|
||||
]) + [
|
||||
"//cc/private/rules_impl:srcs",
|
||||
|
|
Loading…
Reference in New Issue