Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c97b6c14 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Default package-modules to strict module checks"

parents 961489e2 277972a5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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