diff options
author | KalimochoAz <calimochoazucarado@gmail.com> | 2012-04-02 10:40:32 +0200 |
---|---|---|
committer | KalimochoAz <calimochoazucarado@gmail.com> | 2012-04-02 10:40:32 +0200 |
commit | 33813157ce134a8a881d6800e7c3d8532f91c360 (patch) | |
tree | c31f4d9266b5e538c546508090879a87afc11436 | |
parent | 71521ff53b966f8ecea0e7791686b1b4fd170c7c (diff) | |
download | device_samsung_crespo-33813157ce134a8a881d6800e7c3d8532f91c360.zip device_samsung_crespo-33813157ce134a8a881d6800e7c3d8532f91c360.tar.gz device_samsung_crespo-33813157ce134a8a881d6800e7c3d8532f91c360.tar.bz2 |
Incorrect ordering caused the wrong apns-conf to be included
This has being found by pawitp on galaxysmtd. Thanks dude.
Change-Id: I74992d762ea24b042a68a59d6e560edeca8ca121
-rw-r--r-- | cm.mk | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,11 +1,12 @@ -$(call inherit-product, device/samsung/crespo/full_crespo.mk) +# Inherit some common CM stuff. +$(call inherit-product, vendor/cm/config/gsm.mk) PRODUCT_RELEASE_NAME := NS # 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/crespo/full_crespo.mk) # Enhanced NFC $(call inherit-product, vendor/cm/config/nfc_enhanced.mk) |