diff options
author | Pawit Pornkitprasan <p.pawit@gmail.com> | 2012-04-02 15:19:29 +0700 |
---|---|---|
committer | Pawit Pornkitprasan <p.pawit@gmail.com> | 2012-04-02 15:19:29 +0700 |
commit | 3a4641e0c286ba4f967fb61aaff7fde2c2d1f09b (patch) | |
tree | 552d56e0bc791cdc64f152fb06f96af42137e96e | |
parent | 18a4ef7cf84ffc53f8eb0f48ba1633abf4e0fa35 (diff) | |
download | device_samsung_galaxysmtd-3a4641e0c286ba4f967fb61aaff7fde2c2d1f09b.zip device_samsung_galaxysmtd-3a4641e0c286ba4f967fb61aaff7fde2c2d1f09b.tar.gz device_samsung_galaxysmtd-3a4641e0c286ba4f967fb61aaff7fde2c2d1f09b.tar.bz2 |
galaxysmtd: Fix cm.mk
Incorrect ordering caused the wrong apns-conf.xml to be included
-rw-r--r-- | cm.mk | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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 |