android-configure.sh: Fix --no-strip option.

Which is useful to debug crashes that only happen with the
optimized binaries, during refactoring.

Change-Id: Ib84ede690afcf93c06ef94c22670b86bd6698570
diff --git a/android-configure.sh b/android-configure.sh
index bfda5e2..46fca51 100755
--- a/android-configure.sh
+++ b/android-configure.sh
@@ -525,7 +525,7 @@
 esac
 
 # Strip executables and shared libraries unless --debug is used.
-if [ "$OPTION_DEBUG" != "yes" ]; then
+if [ "$OPTION_DEBUG" != "yes" -a "$OPTION_NO_STRIP" != "yes" ]; then
     case $HOST_OS in
         darwin)
             LDFLAGS="$LDFLAGS -Wl,-S"