Skip to content
This repository was archived by the owner on Aug 15, 2017. It is now read-only.

Commit 108b8c7

Browse files
committed
Correct typo in error message.
1 parent edae411 commit 108b8c7

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dist
1010
*.pyc
1111
testsuite
1212
.packages
13-
13+
*.tar.gz
1414
#ECLIPSE + PYDEV
1515
.project
1616
.pydevproject

build.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -199,13 +199,12 @@ function push_arm() {
199199
fi
200200

201201
export PATH="$ANDROIDNDK/toolchains/$TOOLCHAIN_PREFIX-$TOOLCHAIN_VERSION/prebuilt/$PYPLATFORM-x86/bin/:$ANDROIDNDK/toolchains/$TOOLCHAIN_PREFIX-$TOOLCHAIN_VERSION/prebuilt/$PYPLATFORM-x86_64/bin/:$ANDROIDNDK:$ANDROIDSDK/tools:$PATH"
202-
203202
# search compiler in the path, to fail now instead of later.
204203
CC=$(which $TOOLCHAIN_PREFIX-gcc)
205204
if [ "X$CC" == "X" ]; then
206205
error "Unable to find compiler ($TOOLCHAIN_PREFIX-gcc) !!"
207206
error "1. Ensure that SDK/NDK paths are correct"
208-
error "2. Ensure that you've the Android API $ANDROIDAPI SDK Platform (via android tool)"
207+
error "2. Ensure that you've installed the Android API $ANDROIDAPI SDK Platform (via android tool)"
209208
exit 1
210209
else
211210
debug "Compiler found at $CC"

0 commit comments

Comments
 (0)