Remove unnecessary inheritance layer between aliases.
The extra inheritance layer may cause multiple PRODUCT_DEVICE/PRODUCT_BRAND values for a product if it doesn't explicitly override them, eg. gms. The full_* are deprecated product names. We keep them just for backward compatibility, for some tools may still use the full_* product names. Bug: 25611987 Change-Id: I7ecebd422754c3ceb16507b8d9ced65d533fe7c3
This commit is contained in:
parent
d1fd823f33
commit
cc2001fb44
|
@ -13,6 +13,6 @@
|
|||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
$(call inherit-product, $(SRC_TARGET_DIR)/product/full.mk)
|
||||
include $(SRC_TARGET_DIR)/product/full.mk
|
||||
|
||||
PRODUCT_NAME := aosp_arm
|
||||
|
|
|
@ -13,6 +13,6 @@
|
|||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
$(call inherit-product, $(SRC_TARGET_DIR)/product/full_mips.mk)
|
||||
include $(SRC_TARGET_DIR)/product/full_mips.mk
|
||||
|
||||
PRODUCT_NAME := aosp_mips
|
||||
|
|
|
@ -13,6 +13,6 @@
|
|||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
$(call inherit-product, $(SRC_TARGET_DIR)/product/full_x86.mk)
|
||||
include $(SRC_TARGET_DIR)/product/full_x86.mk
|
||||
|
||||
PRODUCT_NAME := aosp_x86
|
||||
|
|
Loading…
Reference in New Issue