From 84453912b1f3030e57439d9d6d2c4ba9ca6d73d1 Mon Sep 17 00:00:00 2001 From: MoroccanMalinois Date: Mon, 2 Jan 2017 16:34:35 +0000 Subject: [PATCH] add libunwind for android --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 3843f350..3e1eb5e9 100755 --- a/build.sh +++ b/build.sh @@ -53,7 +53,7 @@ if [ ! -d build ]; then mkdir build; fi # Platform indepenent settings platform=$(get_platform) -if [ "$platform" == "linux32" ] || [ "$platform" == "linux64" ]; then +if [ "$ANDROID" != true ] && ([ "$platform" == "linux32" ] || [ "$platform" == "linux64" ]); then distro=$(lsb_release -is) if [ "$distro" == "Ubuntu" ]; then CONFIG="$CONFIG libunwind_off"