Skip to content

Commit 4566900

Browse files
authored
fix: Set allow_empty on lib filegroup (#635)
Fixes an issue introduced by #580: ``` ERROR: Traceback (most recent call last): File "/tmp/containerbase/cache/.cache/bazel/_bazel_ubuntu/584cba79b2819b2d6448a0fcd59d73a4/external/toolchains_llvm++llvm+llvm_toolchain_linux_exec_llvm/BUILD.bazel", line 91, column 13, in <toplevel> ] + glob([ Error in glob: glob pattern 'lib/**/libc++*.a' didn't match anything, but allow_empty is set to False (the default value of allow_empty can be set with --incompatible_disallow_empty_glob). ```
1 parent e0b5952 commit 4566900

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

toolchain/BUILD.llvm_repo.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ filegroup(
9191
] + glob([
9292
"lib/**/libc++*.a",
9393
"lib/**/libunwind.a",
94-
]),
94+
], allow_empty = True),
9595
)
9696

9797
filegroup(

0 commit comments

Comments
 (0)