aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/build_defs/apple
diff options
context:
space:
mode:
authorGravatar Damien Martin-Guillerez <dmarting@google.com>2016-09-13 15:57:52 +0000
committerGravatar Dmitry Lomov <dslomov@google.com>2016-09-14 09:34:11 +0000
commit6022b7bd3719933be90a23006bc3adbbb9d125ee (patch)
tree0e0bf10bbdfc0067acbc391cd25986614eaacc42 /tools/build_defs/apple
parent7a0b5187052859c3c7c204dcc2067805bd69cb3d (diff)
*** Reason for rollback *** Breaks all projects using Bazel, see https://ci.bazel.io *** Original change description *** Deprecated and removed HOST_CFG and DATA_CFG global variables. -- MOS_MIGRATED_REVID=133005398
Diffstat (limited to 'tools/build_defs/apple')
-rw-r--r--tools/build_defs/apple/apple_genrule.bzl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/build_defs/apple/apple_genrule.bzl b/tools/build_defs/apple/apple_genrule.bzl
index 8a0b067b5d..b22c480189 100644
--- a/tools/build_defs/apple/apple_genrule.bzl
+++ b/tools/build_defs/apple/apple_genrule.bzl
@@ -75,7 +75,7 @@ _apple_genrule_inner = rule(
implementation=_apple_genrule,
attrs={
"srcs": attr.label_list(allow_files=True),
- "tools": attr.label_list(cfg="host", allow_files=True),
+ "tools": attr.label_list(cfg=HOST_CFG, allow_files=True),
"outs": attr.output_list(mandatory=True),
"cmd": attr.string(mandatory=True),
"message": attr.string(),