From 1b2732f465405c35e18a8ee0afbe1929a2aa5a51 Mon Sep 17 00:00:00 2001 From: "bazel.build machine account" <15028808+bazel-io@users.noreply.github.com> Date: Fri, 4 Aug 2023 13:16:09 -0400 Subject: [PATCH] Switch xcode_autoconf to use 'configure = True' (#19174) Using 'local = True' seems to run this too frequently. Realistically the user's installed Xcode versions don't change very often so similar to cc_autoconf this should be ok. Closes #19121. PiperOrigin-RevId: 553557177 Change-Id: I66368ec31d97badd24814aa13177261099e56dc7 Co-authored-by: Keith Smiley --- tools/osx/xcode_configure.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/osx/xcode_configure.bzl b/tools/osx/xcode_configure.bzl index 26854db697b1e3..e8b7499a814861 100644 --- a/tools/osx/xcode_configure.bzl +++ b/tools/osx/xcode_configure.bzl @@ -293,7 +293,7 @@ def _impl(repository_ctx): xcode_autoconf = repository_rule( implementation = _impl, - local = True, + configure = True, attrs = { "xcode_locator": attr.string(), "remote_xcode": attr.string(),