Specify a target for setup-makefiles.sh

* So it can be run standalone

Signed-off-by: Paul Keith <javelinanddart@bestas.gr>
This commit is contained in:
Paul Keith
2017-04-07 08:13:31 -05:00
parent c1a4094173
commit feafa1c9b3
2 changed files with 17 additions and 1 deletions

View File

@@ -18,6 +18,9 @@
set -e
export GAPPS_COMMON=common
export VENDOR=gapps
# Load extract_utils and do some sanity checks
MY_DIR="${BASH_SOURCE%/*}"
if [[ ! -d "$MY_DIR" ]]; then MY_DIR="$PWD"; fi
@@ -31,6 +34,19 @@ if [ ! -f "$HELPER" ]; then
fi
. "$HELPER"
while [ "$1" != "" ]; do
case $1 in
-t | --target ) shift
export TARGET=$1
esac
shift
done
if [ -z "$TARGET" ]; then
echo "Warning, target for extraction not specified, defaulting to arm"
TARGET=arm
fi
# Initialize the helper for common gapps
setup_vendor "$GAPPS_COMMON" "$VENDOR" "$CM_ROOT" true