From 5c486705da7fece4739015ce566423a8fd89916f Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Mon, 19 Dec 2022 11:23:19 -0800 Subject: [PATCH] Update cfg to exec (#137) This makes this repo compatible with an upcoming bazel change removing host here --- subpar.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subpar.bzl b/subpar.bzl index 9146e00..a8ae7ef 100644 --- a/subpar.bzl +++ b/subpar.bzl @@ -134,7 +134,7 @@ parfile_attrs = { "compiler": attr.label( default = Label(DEFAULT_COMPILER), executable = True, - cfg = "host", + cfg = "exec", ), "compiler_args": attr.string_list(default = []), "zip_safe": attr.bool(default = True),