diff options
author | Narayan Kamath <narayan@google.com> | 2014-06-23 17:52:53 +0100 |
---|---|---|
committer | Narayan Kamath <narayan@google.com> | 2014-06-23 17:52:53 +0100 |
commit | 6fdf121c192944f13255a8908df802051fec6535 (patch) | |
tree | c0be684ad73b747efd824da5787f40b99ae272dd /target/product | |
parent | 39175e172c06181f727ace24a324e82e59aa312b (diff) | |
download | build-6fdf121c192944f13255a8908df802051fec6535.zip build-6fdf121c192944f13255a8908df802051fec6535.tar.gz build-6fdf121c192944f13255a8908df802051fec6535.tar.bz2 |
Fix 64 bit emulator booting (again).
Not only should they inherit from core_64_bit.mk, we should
inherit from that first to make sure sdk.mk doesn't override
those values with other cruft.
Change-Id: Ibcd3c47b5be92544c1e86b6e85608b875c468461
Diffstat (limited to 'target/product')
-rw-r--r-- | target/product/sdk_arm64.mk | 2 | ||||
-rw-r--r-- | target/product/sdk_mips64.mk | 2 | ||||
-rw-r--r-- | target/product/sdk_x86_64.mk | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/target/product/sdk_arm64.mk b/target/product/sdk_arm64.mk index 6b177e8..9aa58b3 100644 --- a/target/product/sdk_arm64.mk +++ b/target/product/sdk_arm64.mk @@ -19,8 +19,8 @@ # build quite specifically for the emulator, and might not be # entirely appropriate to inherit from for on-device configurations. -$(call inherit-product, $(SRC_TARGET_DIR)/product/sdk.mk) $(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit.mk) +$(call inherit-product, $(SRC_TARGET_DIR)/product/sdk.mk) # Overrides PRODUCT_BRAND := generic_arm64 diff --git a/target/product/sdk_mips64.mk b/target/product/sdk_mips64.mk index d5ab824..c46eaed 100644 --- a/target/product/sdk_mips64.mk +++ b/target/product/sdk_mips64.mk @@ -19,8 +19,8 @@ # build quite specifically for the emulator, and might not be # entirely appropriate to inherit from for on-device configurations. -$(call inherit-product, $(SRC_TARGET_DIR)/product/sdk.mk) $(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit.mk) +$(call inherit-product, $(SRC_TARGET_DIR)/product/sdk.mk) # Overrides PRODUCT_BRAND := generic_mips64 diff --git a/target/product/sdk_x86_64.mk b/target/product/sdk_x86_64.mk index d50d1c4..62f2dbb 100644 --- a/target/product/sdk_x86_64.mk +++ b/target/product/sdk_x86_64.mk @@ -19,8 +19,8 @@ # build quite specifically for the emulator, and might not be # entirely appropriate to inherit from for on-device configurations. -$(call inherit-product, $(SRC_TARGET_DIR)/product/sdk.mk) $(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit.mk) +$(call inherit-product, $(SRC_TARGET_DIR)/product/sdk.mk) # Overrides PRODUCT_BRAND := generic_x86_64 |