From 7a83d4f64699685efba63192763e6800c3665e60 Mon Sep 17 00:00:00 2001 From: Gia90 Date: Tue, 16 Oct 2018 20:18:29 +0200 Subject: [PATCH] Fixed stupid bug affecting X86_64 architecture detection --- CommonInstaller | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CommonInstaller b/CommonInstaller index fe82ef2..36a1c67 100644 --- a/CommonInstaller +++ b/CommonInstaller @@ -384,7 +384,7 @@ detect_arch () { [ "$ABI" = "x86" ] && ARCH=x86 [ "$ABI2" = "x86" ] && ARCH=x86 [ "$ABILONG" = "arm64-v8a" ] && ARCH=arm64 - [ "$ABILONG" = "x86_64" ] && ARCH=x64 + [ "$ABILONG" = "x86_64" ] && ARCH=x86_64 case ${ARCH} in arm ) BIN_ARCH="arm"