summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authormvglasow <michael -at- vonglasow.com>2019-08-22 17:38:24 +0300
committermvglasow <michael -at- vonglasow.com>2019-08-22 17:38:24 +0300
commit09cba6747620974a29739383f56d30eb74d9be92 (patch)
tree42ce9e1a56055547bccf5145da60b060ee520190 /scripts
parente49fb73152e4f16c8d6af0c9fba274c14d741998 (diff)
downloadnavit-09cba6747620974a29739383f56d30eb74d9be92.tar.gz
Add:build:Print error messages to stderr
Signed-off-by: mvglasow <michael -at- vonglasow.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/build_android.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build_android.sh b/scripts/build_android.sh
index 790d8130c..00ad18367 100755
--- a/scripts/build_android.sh
+++ b/scripts/build_android.sh
@@ -25,7 +25,7 @@ export GRADLE_OPTS='-Dorg.gradle.jvmargs="-Xmx2048m -XX:+HeapDumpOnOutOfMemoryEr
# processing xml is messed up a bit after the original introduction of gradle
# so require a useless install of ant here even if using gradle/ninja
-which ant > /dev/null || { echo "FATAL: ant is not installed; install manually and retry."; exit 1; }
+which ant > /dev/null || { echo "FATAL: ant is not installed; install manually and retry." >&2; exit 1; }
echo Run CMake
test -z "$PKG_CONFIG_LIBDIR" && export PKG_CONFIG_LIBDIR="" # Force cmake below to run ignore build host libraries when using pkgconfig.