aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmit Pundir <amit.pundir@linaro.org>2012-11-21 15:30:45 +0530
committerAmit Pundir <amit.pundir@linaro.org>2012-11-21 15:48:11 +0530
commit02c4f7f1b6666f57ca99e921c3c30311d5571648 (patch)
treeea8c4f08956ea0c382021e7249c7091f1677c2f9
parent9bf91dce6f49020b2b3bad515daa9ca7c71f8bcb (diff)
downloadump-linaro_android_jb.tar.gz
Android.mk: modify TARGET_BOARD if condition to support Origen 4412linaro_android_jb
The corresponding CFLAG is valid for both variants of Origen so we need to modify this if condition. Change-Id: I1164a613dbebbc2183d772a5bf3aa79000c32a48
-rw-r--r--Android.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/Android.mk b/Android.mk
index 951d930..b6b3208 100644
--- a/Android.mk
+++ b/Android.mk
@@ -14,7 +14,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
-ifeq ($(TARGET_BOARD_PLATFORM),origen)
+ifneq (,$(filter $(TARGET_PRODUCT),origen origen_quad))
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
@@ -44,4 +44,4 @@ LOCAL_MODULE_TAGS := eng
LOCAL_WHOLE_STATIC_LIBRARIES := libUMP
LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/
include $(BUILD_SHARED_LIBRARY)
-endif \ No newline at end of file
+endif