Specify a target for setup-makefiles.sh

* So it can be run standalone

Signed-off-by: Paul Keith <javelinanddart@bestas.gr>
这个提交包含在:
Paul Keith
2017-04-07 08:13:31 -05:00
父节点 c1a4094173
当前提交 feafa1c9b3
修改 2 个文件,包含 17 行新增1 行删除

查看文件

@@ -65,4 +65,4 @@ setup_vendor "$TARGET" "$VENDOR" "$CM_ROOT"
extract "$MY_DIR"/proprietary-files-$TARGET.txt "$SRC"
"$MY_DIR"/setup-makefiles.sh
"$MY_DIR"/setup-makefiles.sh -t $TARGET

查看文件

@@ -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