From 778a5d47263e3e2c97b90c17c22b79e1ce0d60af Mon Sep 17 00:00:00 2001 From: BOBtheBlinker Date: Mon, 28 Jul 2025 23:13:19 -0400 Subject: [PATCH] Delete setup-makefiles.sh --- setup-makefiles.sh | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100755 setup-makefiles.sh diff --git a/setup-makefiles.sh b/setup-makefiles.sh deleted file mode 100755 index cf9f0be..0000000 --- a/setup-makefiles.sh +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/bash -# -# Copyright (C) 2016 The CyanogenMod Project -# Copyright (C) 2017-2020 The LineageOS Project -# Copyright (C) 2019 - Current | A-Team Digital Solutions -# -# SPDX-License-Identifier: Apache-2.0 -# - -set -e - -DEVICE=mona -VENDOR=motorola - -# Load extract_utils and do some sanity checks -MY_DIR="${BASH_SOURCE%/*}" -if [[ ! -d "${MY_DIR}" ]]; then MY_DIR="${PWD}"; fi - -ANDROID_ROOT="${MY_DIR}/../../.." - -HELPER="${ANDROID_ROOT}/tools/extract-utils/extract_utils.sh" -if [ ! -f "${HELPER}" ]; then - echo "Unable to find helper script at ${HELPER}" - exit 1 -fi -source "${HELPER}" - -# Initialize the helper -setup_vendor "${DEVICE}" "${VENDOR}" "${ANDROID_ROOT}" - -# Warning headers and guards -write_headers - -write_makefiles "${MY_DIR}/proprietary-files.txt" true - -# Finish -write_footers