From 5cbd830262e2100002b10bae7969c72700fd593c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?X=C3=B9d=C5=8Dng=20Y=C3=A1ng?= Date: Fri, 4 Oct 2024 22:54:53 +0200 Subject: [PATCH] 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. --- cc/private/BUILD | 1 - 1 file changed, 1 deletion(-) diff --git a/cc/private/BUILD b/cc/private/BUILD index 7461e64f..15361bb1 100644 --- a/cc/private/BUILD +++ b/cc/private/BUILD @@ -15,7 +15,6 @@ filegroup( name = "srcs", srcs = glob([ - "**/*.bzl", "**/BUILD", ]) + [ "//cc/private/rules_impl:srcs",