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(
|
filegroup(
|
||||||
name = "srcs",
|
name = "srcs",
|
||||||
srcs = glob([
|
srcs = glob([
|
||||||
"**/*.bzl",
|
|
||||||
"**/BUILD",
|
"**/BUILD",
|
||||||
]) + [
|
]) + [
|
||||||
"//cc/private/rules_impl:srcs",
|
"//cc/private/rules_impl:srcs",
|
||||||
|
|
Loading…
Reference in New Issue