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

Commit f47d5802 authored by Dan Willemsen's avatar Dan Willemsen Committed by Colin Cross
Browse files

Don't check vendor path for phony packages

These don't get installed, so they don't need to be in TARGET_OUT_VENDOR

Change-Id: I887ca4758e7c477808ed9a6b621dfd3f4ede5f32
parent 00a218a9
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -85,10 +85,11 @@ ifneq (,$(filter path all, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_RESTRICT_VENDO

$(foreach m, $(_vendor_check_modules), \
  $(if $(filter vendor/%, $(ALL_MODULES.$(m).PATH)),\
    $(if $(filter-out FAKE, $(ALL_MODULES.$(m).CLASS)),\
      $(if $(filter $(TARGET_OUT_VENDOR)/%, $(ALL_MODULES.$(m).INSTALLED)),,\
        $(error Error: vendor module "$(m)" in $(ALL_MODULES.$(m).PATH) \
          in product "$(TARGET_PRODUCT)" being installed to \
        $(ALL_MODULES.$(m).INSTALLED) which is not in the vendor tree))))
          $(ALL_MODULES.$(m).INSTALLED) which is not in the vendor tree)))))

endif