From f3c8a0b23b87e86d3d7eb57ef6b107c453440f8d Mon Sep 17 00:00:00 2001 From: Vitalii Koshura Date: Sat, 11 May 2019 00:10:17 +0300 Subject: [PATCH] [Android] Fix CI build script Fix usage of BUILD_DIR variable that was missed during input parameters parsing Signed-off-by: Vitalii Koshura --- android/buildAndroidBOINC-CI.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/buildAndroidBOINC-CI.sh b/android/buildAndroidBOINC-CI.sh index 0bececcc8b..85a823992a 100755 --- a/android/buildAndroidBOINC-CI.sh +++ b/android/buildAndroidBOINC-CI.sh @@ -91,7 +91,7 @@ fi if [ "x$build_dir" != "x" ]; then if isPathCanonical "$build_dir" && [ "$build_dir" != "/" ]; then - PREFIX="$build_dir" + BUILD_DIR="$build_dir" else echo "build_dir must be an absolute path without ./ or ../ in it" exit 1