From 86d456ad8f2aef6edcc36d44d26119025331981e Mon Sep 17 00:00:00 2001 From: Kirill <77356738+kirillpyasecky@users.noreply.github.com> Date: Wed, 3 Jul 2024 18:00:58 +0300 Subject: [PATCH] Fix error: name 'maybe' is not defined (#96741) --- utils/bazel/examples/http_archive/WORKSPACE | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utils/bazel/examples/http_archive/WORKSPACE b/utils/bazel/examples/http_archive/WORKSPACE index efc3a083e059..94dffa7fa63a 100644 --- a/utils/bazel/examples/http_archive/WORKSPACE +++ b/utils/bazel/examples/http_archive/WORKSPACE @@ -39,6 +39,8 @@ load("@llvm-raw//utils/bazel:configure.bzl", "llvm_configure") llvm_configure(name = "llvm-project") +load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe") + maybe( http_archive, name = "llvm_zlib",