mirror of https://github.com/BOINC/boinc.git
[Android] Fix CI build script
Fix usage of BUILD_DIR variable that was missed during input parameters parsing Signed-off-by: Vitalii Koshura <lestat.de.lionkur@gmail.com>
This commit is contained in:
parent
3f2bb69aad
commit
f3c8a0b23b
|
@ -91,7 +91,7 @@ fi
|
||||||
|
|
||||||
if [ "x$build_dir" != "x" ]; then
|
if [ "x$build_dir" != "x" ]; then
|
||||||
if isPathCanonical "$build_dir" && [ "$build_dir" != "/" ]; then
|
if isPathCanonical "$build_dir" && [ "$build_dir" != "/" ]; then
|
||||||
PREFIX="$build_dir"
|
BUILD_DIR="$build_dir"
|
||||||
else
|
else
|
||||||
echo "build_dir must be an absolute path without ./ or ../ in it"
|
echo "build_dir must be an absolute path without ./ or ../ in it"
|
||||||
exit 1
|
exit 1
|
||||||
|
|
Loading…
Reference in New Issue