summaryrefslogtreecommitdiffhomepage
path: root/examples/Makefile.Android
diff options
context:
space:
mode:
authorIsaacTCB <[email protected]>2022-10-30 08:18:12 -0300
committerGitHub <[email protected]>2022-10-30 12:18:12 +0100
commit4c4a7038418de96c47bc34102fb61ea3551f510f (patch)
treeea794796e02efb31fb2478e111bfa4131808baae /examples/Makefile.Android
parentd91f30958f5c9cb617c2738722c1966b8cd3ce67 (diff)
downloadraylib-4c4a7038418de96c47bc34102fb61ea3551f510f.tar.gz
raylib-4c4a7038418de96c47bc34102fb61ea3551f510f.zip
Fix Android x86 Architecture name (#2783)
When building a x86 project, the folder inside lib is named i686. However Android x86 actually expects the folder to be called x86.
Diffstat (limited to 'examples/Makefile.Android')
-rw-r--r--examples/Makefile.Android2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/Makefile.Android b/examples/Makefile.Android
index 5d76fb76..0570d8b2 100644
--- a/examples/Makefile.Android
+++ b/examples/Makefile.Android
@@ -48,7 +48,7 @@ ifeq ($(ANDROID_ARCH),ARM64)
ANDROID_ARCH_NAME = arm64-v8a
endif
ifeq ($(ANDROID_ARCH),x86)
- ANDROID_ARCH_NAME = i686
+ ANDROID_ARCH_NAME = x86
endif
ifeq ($(ANDROID_ARCH),x86_64)
ANDROID_ARCH_NAME = x86_64