Default package-modules to strict module checks

Every warning has been fixed on master now.

Test: multiproduct_kati (build_test through treehugger)
Change-Id: I5bbbb3bd330422f976cb13d9078c5e192f135dc4
This commit is contained in:
Dan Willemsen
2020-01-30 11:03:12 -08:00
parent 82558243d5
commit 277972a503

View File

@@ -41,7 +41,7 @@ my_missing_files = $(shell $(call echo-warning,$(my_makefile),$(my_package_name)
ifeq ($(ALLOW_MISSING_DEPENDENCIES),true)
# Ignore unknown installed files on partial builds
my_missing_files =
else ifeq ($(my_modules_strict),true)
else ifneq ($(my_modules_strict),false)
my_missing_files = $(shell $(call echo-error,$(my_makefile),$(my_package_name): Unknown installed file for module '$(1)'))$(eval my_missing_error := true)
endif