Merge branch 'master' of git.linphone.org:linphone-android
This commit is contained in:
commit
0ab88d7419
1 changed files with 6 additions and 1 deletions
|
@ -4,9 +4,14 @@ topdir=`pwd`
|
||||||
|
|
||||||
if test -z "$1" ; then
|
if test -z "$1" ; then
|
||||||
ndk_build_path=`which ndk-build`
|
ndk_build_path=`which ndk-build`
|
||||||
|
if test "$?" != "0" ; then
|
||||||
|
echo "ndk-build not found in path. Please specify path to android NDK as first argument of $0."
|
||||||
|
exit 127
|
||||||
|
fi
|
||||||
NDK_PATH=`dirname $ndk_build_path`
|
NDK_PATH=`dirname $ndk_build_path`
|
||||||
if test -z "NDK_PATH" ; then
|
if test -z "NDK_PATH" ; then
|
||||||
echo "Path to Android NDK not set, please specify it as first argument of $0"
|
echo "Path to Android NDK not set, please specify it as first argument of $0."
|
||||||
|
exit 127
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
NDK_PATH=$1
|
NDK_PATH=$1
|
||||||
|
|
Loading…
Reference in a new issue