From d4ca89bfd60996ac935e3072ea6718554bd781db Mon Sep 17 00:00:00 2001 From: Jiyong Park Date: Tue, 14 Mar 2017 09:31:12 +0900 Subject: [PATCH] fix: cannot determine the type of modules with class 'samples' Test: make sdk should not break Change-Id: I849befde3c6b91f0b417aa6b11a909c6c4aad627 --- core/base_rules.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/base_rules.mk b/core/base_rules.mk index 2f7852d1c..1fb516b84 100644 --- a/core/base_rules.mk +++ b/core/base_rules.mk @@ -227,9 +227,9 @@ in Android.bp to do so.") # Here, vendor means vendor/oem/odm lib_type := vendor_provided else - # Test lib falls into this. No lib_type required for them. - ifneq ($(filter tests,$(LOCAL_MODULE_TAGS)),tests) - $(call pretty-error,Cannot determine the type of this library) + # Test, samples lib falls into this. No lib_type required for them. + ifeq ($(filter tests samples,$(LOCAL_MODULE_TAGS)),) + $(call pretty-warning,Cannot determine the type of this library) endif lib_type := endif