diff options
author | Joe Onorato <joeo@google.com> | 2012-08-17 00:35:09 -0700 |
---|---|---|
committer | Joe Onorato <joeo@google.com> | 2012-08-17 00:46:17 -0700 |
commit | c31be8f8f21551dc906143e45a692bc70c2496e3 (patch) | |
tree | a54d024ebb4ee2d6ad322ea3a17f40dbcc2237d1 /core/base_rules.mk | |
parent | 175f2e0b433edaf103fea900cea467f55249d548 (diff) | |
download | build-c31be8f8f21551dc906143e45a692bc70c2496e3.zip build-c31be8f8f21551dc906143e45a692bc70c2496e3.tar.gz build-c31be8f8f21551dc906143e45a692bc70c2496e3.tar.bz2 |
Make error a warning for now
Change-Id: I156fb70432cf546650bf11d03a4edc118c665c1c
Diffstat (limited to 'core/base_rules.mk')
-rw-r--r-- | core/base_rules.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/base_rules.mk b/core/base_rules.mk index 5c733b3..530105b 100644 --- a/core/base_rules.mk +++ b/core/base_rules.mk @@ -511,7 +511,8 @@ endif ifeq ($(LOCAL_IS_HOST_MODULE),true) ALL_HOST_INSTALLED_FILES += $(LOCAL_INSTALLED_MODULE) ifneq ($(filter debug eng tests, $(LOCAL_MODULE_TAGS)),) - $(error $(LOCAL_MODULE_MAKEFILE): Host module "$(LOCAL_MODULE)" has useless module tags: $(filter debug eng tests, $(LOCAL_MODULE_TAGS)). It will be installed anyway.) + $(warning $(LOCAL_MODULE_MAKEFILE): Host module "$(LOCAL_MODULE)" has useless module tags: $(filter debug eng tests, $(LOCAL_MODULE_TAGS)). It will be installed anyway.) + LOCAL_MODULE_TAGS := $(filter-out debug eng tests, $(LOCAL_MODULE_TAGS)) endif endif |