[vlc-commits] contrib/bootstrap: Fix case order for arm64 check for android
Marvin Scholz
git at videolan.org
Wed Jun 12 21:09:39 CEST 2019
vlc | branch: master | Marvin Scholz <epirat07 at gmail.com> | Wed Jun 5 12:55:30 2019 +0200| [3731e7f676a343b7b8137b0dbdc4930e9b4f12a4] | committer: Marvin Scholz
contrib/bootstrap: Fix case order for arm64 check for android
If the *arm* case come before the arm64 case, it would always match the
arm case instead of the arm64 one.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3731e7f676a343b7b8137b0dbdc4930e9b4f12a4
---
contrib/bootstrap | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/contrib/bootstrap b/contrib/bootstrap
index ed49495a86..2e87a44f1e 100755
--- a/contrib/bootstrap
+++ b/contrib/bootstrap
@@ -320,12 +320,12 @@ case "${OS}" in
check_android_sdk
add_make_enabled "HAVE_LINUX" "HAVE_ANDROID"
case "${HOST}" in
- *arm*)
- add_make "PLATFORM_SHORT_ARCH := arm"
- ;;
*arm64*|*aarch64*)
add_make "PLATFORM_SHORT_ARCH := arm64"
;;
+ *arm*)
+ add_make "PLATFORM_SHORT_ARCH := arm"
+ ;;
*i686*)
add_make "PLATFORM_SHORT_ARCH := x86"
;;
More information about the vlc-commits
mailing list