From 3a4641e0c286ba4f967fb61aaff7fde2c2d1f09b Mon Sep 17 00:00:00 2001 From: Pawit Pornkitprasan Date: Mon, 2 Apr 2012 15:19:29 +0700 Subject: galaxysmtd: Fix cm.mk Incorrect ordering caused the wrong apns-conf.xml to be included --- cm.mk | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cm.mk b/cm.mk index 81a99b9..a931c3c 100644 --- a/cm.mk +++ b/cm.mk @@ -1,4 +1,5 @@ -$(call inherit-product, device/samsung/galaxysmtd/full_galaxysmtd.mk) +## Specify phone tech before including full_phone +$(call inherit-product, vendor/cm/config/gsm.mk) # Release name PRODUCT_RELEASE_NAME := GalaxyS @@ -6,8 +7,8 @@ PRODUCT_RELEASE_NAME := GalaxyS # Inherit some common CM stuff. $(call inherit-product, vendor/cm/config/common_full_phone.mk) -# Inherit some common CM stuff. -$(call inherit-product, vendor/cm/config/gsm.mk) +# Inherit device configuration +$(call inherit-product, device/samsung/galaxysmtd/full_galaxysmtd.mk) ## Device identifier. This must come after all inclusions PRODUCT_DEVICE := galaxysmtd -- cgit v1.1