summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJoe Onorato <joeo@google.com>2012-08-17 05:33:39 -0700
committerJoe Onorato <joeo@google.com>2012-08-17 05:35:23 -0700
commit68559da02facee0691a4417d31b42491bf174f15 (patch)
tree0e206cc6624c5b4ac8fb05f0a5edb6578951be8b /core
parent3b4b11a4701b64df5248e7d86c0c357954a2ca10 (diff)
downloadbuild-68559da02facee0691a4417d31b42491bf174f15.zip
build-68559da02facee0691a4417d31b42491bf174f15.tar.gz
build-68559da02facee0691a4417d31b42491bf174f15.tar.bz2
Install all host modules. Don't filter out ones tagged "optional"
Change-Id: I9b3a27a4c84ee748314e98603670eb939ae949e2
Diffstat (limited to 'core')
-rw-r--r--core/base_rules.mk4
1 files changed, 1 insertions, 3 deletions
diff --git a/core/base_rules.mk b/core/base_rules.mk
index ecb9c30..deb73ea 100644
--- a/core/base_rules.mk
+++ b/core/base_rules.mk
@@ -511,9 +511,7 @@ endif
# All host modules that are not tagged with optional are automatically installed.
# Save the installed files in ALL_HOST_INSTALLED_FILES.
ifeq ($(LOCAL_IS_HOST_MODULE),true)
- ifneq ($(filter optional,$(LOCAL_MODULE_TAGS)),optional)
- ALL_HOST_INSTALLED_FILES += $(LOCAL_INSTALLED_MODULE)
- endif
+ ALL_HOST_INSTALLED_FILES += $(LOCAL_INSTALLED_MODULE)
ifneq ($(filter debug eng tests, $(LOCAL_MODULE_TAGS)),)
$(warning $(LOCAL_MODULE_MAKEFILE): 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))