From 2451ccceec884f44d9ad530c3316a50b4c02e7a8 Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Thu, 3 Aug 2023 12:31:51 -0700 Subject: [PATCH] Switch xcode_autoconf to use 'configure = True' 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 --- 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(),