summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCole Faust <colefaust@google.com>2021-12-21 11:45:25 -0800
committerCole Faust <colefaust@google.com>2021-12-21 11:45:25 -0800
commit1cd1f2e53c3ff998d8b4a0086684886a31dfe1d8 (patch)
tree71237fcf8451f396e5c51f7ad4c1f684da18ec3a
parentab05e3b7d682c051797c829b24a64e5bcd1c6929 (diff)
downloadredfin-1cd1f2e53c3ff998d8b4a0086684886a31dfe1d8.tar.gz
Inline usages of LOCAL_STEM
Having no variables in include/inherit-product statements makes the conversion to starlark cleaner. Bug: 211659921 Test: Presubmits Change-Id: I6987850b507da5b054d45ccaeda8220a58e823a4
-rw-r--r--self-extractors/root/proprietary/BoardConfigVendor.mk6
-rw-r--r--self-extractors/root/proprietary/device-vendor.mk6
2 files changed, 4 insertions, 8 deletions
diff --git a/self-extractors/root/proprietary/BoardConfigVendor.mk b/self-extractors/root/proprietary/BoardConfigVendor.mk
index 3db23cb..a828720 100644
--- a/self-extractors/root/proprietary/BoardConfigVendor.mk
+++ b/self-extractors/root/proprietary/BoardConfigVendor.mk
@@ -12,7 +12,5 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-LOCAL_STEM := redfin/BoardConfigPartial.mk
-
--include vendor/google_devices/$(LOCAL_STEM)
--include vendor/qcom/$(LOCAL_STEM)
+-include vendor/google_devices/redfin/BoardConfigPartial.mk
+-include vendor/qcom/redfin/BoardConfigPartial.mk
diff --git a/self-extractors/root/proprietary/device-vendor.mk b/self-extractors/root/proprietary/device-vendor.mk
index 4fc6a83..ec7073c 100644
--- a/self-extractors/root/proprietary/device-vendor.mk
+++ b/self-extractors/root/proprietary/device-vendor.mk
@@ -12,7 +12,5 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-LOCAL_STEM := redfin/device-partial.mk
-
-$(call inherit-product-if-exists, vendor/google_devices/$(LOCAL_STEM))
-$(call inherit-product-if-exists, vendor/qcom/$(LOCAL_STEM))
+$(call inherit-product-if-exists, vendor/google_devices/redfin/device-partial.mk)
+$(call inherit-product-if-exists, vendor/qcom/redfin/device-partial.mk)