Edited the path to local.properties for consistency reasons.

Changed the path to the local.properties file read by the native_build script (from ../ to ./) to make it consistent with all other build scripts that use local.properties files in their own directories
This commit is contained in:
Timofey 2015-04-21 08:57:23 +03:00 committed by Alex Zolotarev
parent 73e590bc94
commit b4303158e3

View file

@ -7,7 +7,7 @@ source "$MY_PATH/tests_list.sh"
NDK_PATH=""
for line in $(< ../local.properties)
for line in $(< ./local.properties)
do
case $line in
ndk*) NDK_PATH=`echo $line| cut -d'=' -f 2` ;;