From 732f5f5168e87815c9f4e38514a0ab4b400ea684 Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Date: Fri, 31 May 2013 13:46:56 +0200 Subject: [PATCH] Fixed compile script *again* --- src/build/compile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build/compile.sh b/src/build/compile.sh index f624b6173..186917ce7 100755 --- a/src/build/compile.sh +++ b/src/build/compile.sh @@ -245,7 +245,7 @@ $CONFIGURE_FLAGS >> "$DIR/install.log" 2>&1 echo -n " compiling..." if [ "$1" == "android" ]; then sed -i 's/-export-dynamic/-all-static/g' Makefile -elif [ "$1" == "crosscompile" ] && [ "$1" == "android" ]; then +elif [ "$1" == "crosscompile" ] && [ "$2" == "android" ]; then sed -i 's/-export-dynamic/-all-static/g' Makefile fi make -j $THREADS >> "$DIR/install.log" 2>&1