Skip to content

Commit

Permalink
fix build for Power
Browse files Browse the repository at this point in the history
The zip -d flag will error if it doesn't find that extension.
This is a fix for Power, but doesn't fix the default case.

Signed-off-by: Christy Norman <christy@linux.vnet.ibm.com>

Closes #9346.

PiperOrigin-RevId: 271566240
  • Loading branch information
clnperez authored and tkiela1 committed Sep 27, 2019
1 parent 38af41d commit 5cff4f1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/conditions/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ filegroup(
visibility = ["//src:__pkg__"],
)

config_setting(
name = "linux_ppc",
values = {"cpu": "ppc"},
visibility = ["//visibility:public"],
)

config_setting(
name = "linux_x86_64",
values = {"cpu": "k8"},
Expand Down

0 comments on commit 5cff4f1

Please sign in to comment.