Skip to content
Snippets Groups Projects
Commit 7f46d1c0 authored by Alexandre Lision's avatar Alexandre Lision
Browse files

compile: Fix check on FETCH value

TESTED_HASH was checked out every time, since value of FETCH was not
read (only its existence was verified)
parent 68aaf651
No related branches found
No related tags found
No related merge requests found
......@@ -167,7 +167,7 @@ export PATH=${NDK_TOOLCHAIN_PATH}:${PATH}
ANDROID_PATH="`pwd`"
# Fetch sflphone daemon source
if [ ! -z "$FETCH" ]
if [ "$FETCH" = 1 ]
then
# 1/ libsflphone
TESTED_HASH=e87e74626979d24e555c820e2b085b904d531335
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment