Skip to content

Commit 9933ee4

Browse files
authored
Merge pull request conan-community#84 from martinzding/release/1.1.1a
Change Android arm64 target name and fix typo
2 parents 5dceadc + e47f3b3 commit 9933ee4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

conanfile.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -168,11 +168,11 @@ def _get_target(self):
168168
elif self.settings.os == "Android":
169169
target = {"armv7": "android-arm",
170170
"armv7hf": "android-arm",
171-
"armv8": "android64-arm64",
171+
"armv8": "android-arm64",
172172
"x86": "android-x86",
173173
"x86_64": "android-x86_64",
174174
"mips": "android-mips",
175-
"mips64": "anroid-mips64"}.get(str(self.arch), None)
175+
"mips64": "android-mips64"}.get(str(self.arch), None)
176176
if not target:
177177
raise Exception("Unsupported arch for android")
178178
elif self.settings.os == "SunOS":

0 commit comments

Comments
 (0)