#!/bin/sh | |
cd `dirname $0` | |
BUILD_OUTPUT=$($NDK/ndk-build "$@" 2>&1) | |
# Note: the build can fail because it is ill-specific, so don't panic | |
# and just look for the expected warning. | |
printf "%s\n" "$BUILD_OUTPUT" | grep -q -e "WARNING: No modules to build.*your APP_MODULES definition is probably incorrect!" | |
if [ $? != 0 ]; then | |
echo "ERROR: Can't find warning about missing project modules:" | |
printf "%s\n" "$BUILD_OUTPUT" | |
exit 1 | |
fi |