8000 Fix ppc handling · aignas/rules_python@d4b19b4 · GitHub
[go: up one dir, main page]

Skip to content

Commit d4b19b4

Browse files
authored
Fix ppc handling
1 parent 2f34976 commit d4b19b4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

python/private/pypi/pep508_env.bzl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717

1818
_platform_machine_values = {
1919
"aarch64": "arm64",
20-
"ppc": "ppc64le",
20+
"ppc": "ppc",
21+
"ppc64le": "ppc64le",
2122
"s390x": "s390x",
2223
"x86_32": "i386",
2324
"x86_64": "x86_64",

0 commit comments

Comments
 (0)
0