From 78ada5381a9494dcb6c46aa2c886210ef32ae3eb Mon Sep 17 00:00:00 2001 From: Brian Fraser Date: Sun, 12 Jan 2014 23:56:47 -0300 Subject: Configure, Android hints: Changes to allow native builds --- hints/linux-android.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'hints/linux-android.sh') diff --git a/hints/linux-android.sh b/hints/linux-android.sh index 58be2012c3..ae031cbd27 100644 --- a/hints/linux-android.sh +++ b/hints/linux-android.sh @@ -20,6 +20,12 @@ d_libname_unique='define' # On Android the shell is /system/bin/sh: targetsh='/system/bin/sh' +case "$usecrosscompile" in +define) ;; + # If we aren't cross-compiling, then sh should also point + # to /system/bin/sh. +*) sh=$targetsh ;; +esac # Make sure that we look for libm libswanted="$libswanted m" @@ -244,9 +250,13 @@ $chmod a+rx $from fi # Cross-compiling with adb +case "$usecrosscompile" in +define) if $test "X$hostosname" = "Xdarwin"; then firstmakefile=GNUmakefile; fi +;; +esac osvers="`$run getprop ro.build.version.release`" -- cgit v1.2.1