summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiong Sauw Ming <ming@teluu.com>2015-12-11 03:55:01 +0000
committerLiong Sauw Ming <ming@teluu.com>2015-12-11 03:55:01 +0000
commit632d835979a5f40b61631ecb2bb10f4e50d5838a (patch)
treedfd6e79c718536abfee9116f2ef5c38bd023d15c
parent7a6732f54241056f3f98a0d7ef4fcb3f76b45eda (diff)
Re #1882 (misc): Fixed configure-android shell script error on Linux
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@5213 74dad513-b988-da41-8d7b-12977e46ad98
-rwxr-xr-xconfigure-android2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure-android b/configure-android
index 53a96bb1..a27057e2 100755
--- a/configure-android
+++ b/configure-android
@@ -107,7 +107,7 @@ if test "$1" = "--use-ndk-cflags"; then
# Make sure target host string has 'linux-android' in it
if test "x`echo ${TARGET_HOST} | grep 'linux-android'`" = "x"; then
#TARGET_HOST=`echo ${TARGET_HOST} | sed -e 's/\(.*\)\-\([0-9\.]*\)/\1-linux-android-\2/'`
- TARGET_HOST+=-linux-android
+ TARGET_HOST="${TARGET_HOST}-linux-android"
fi
export CC="${NDK_CC}"