diff options
Diffstat (limited to 'setup-makefiles.sh')
-rwxr-xr-x | setup-makefiles.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/setup-makefiles.sh b/setup-makefiles.sh index 701d3ad..d2f5cbd 100755 --- a/setup-makefiles.sh +++ b/setup-makefiles.sh @@ -24,9 +24,9 @@ INITIAL_COPYRIGHT_YEAR=2017 MY_DIR="${BASH_SOURCE%/*}" if [[ ! -d "${MY_DIR}" ]]; then MY_DIR="${PWD}"; fi -LINEAGE_ROOT="${MY_DIR}/../../.." +ANDROID_ROOT="${MY_DIR}/../../.." -HELPER="${LINEAGE_ROOT}/vendor/lineage/build/tools/extract_utils.sh" +HELPER="${ANDROID_ROOT}/tools/extract-utils/extract_utils.sh" if [ ! -f "${HELPER}" ]; then echo "Unable to find helper script at ${HELPER}" exit 1 @@ -34,7 +34,7 @@ fi source "${HELPER}" # Initialize the helper for common -setup_vendor "${DEVICE_COMMON}" "${VENDOR}" "${LINEAGE_ROOT}" true +setup_vendor "${DEVICE_COMMON}" "${VENDOR}" "${ANDROID_ROOT}" true # Copyright headers and guards write_headers "z2_plus z2_row" @@ -47,7 +47,7 @@ write_footers if [ -s "${MY_DIR}/../${DEVICE}/proprietary-files.txt" ]; then # Reinitialize the helper for device - setup_vendor "${DEVICE}" "${VENDOR}" "${LINEAGE_ROOT}" false + setup_vendor "${DEVICE}" "${VENDOR}" "${ANDROID_ROOT}" false # Copyright headers and guards write_headers |