Don't check the existence for the 64-bit modules for 32-bit SDK build.
Change-Id: I0d5d6ecc07332bef6854466fd98380eb12fc08fc
This commit is contained in:
parent
7ea5cd95b8
commit
940d68af53
|
@ -759,6 +759,10 @@ ifdef is_sdk_build
|
||||||
$(foreach m, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES), \
|
$(foreach m, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES), \
|
||||||
$(if $(strip $(ALL_MODULES.$(m).INSTALLED)),,\
|
$(if $(strip $(ALL_MODULES.$(m).INSTALLED)),,\
|
||||||
$(eval dangling_modules += $(m))))
|
$(eval dangling_modules += $(m))))
|
||||||
|
ifneq ($(TARGET_IS_64_BIT),true)
|
||||||
|
# We know those 64-bit modules don't exist in the 32-bit SDK build.
|
||||||
|
dangling_modules := $(filter-out %64,$(dangling_modules))
|
||||||
|
endif
|
||||||
ifneq ($(dangling_modules),)
|
ifneq ($(dangling_modules),)
|
||||||
$(error Module names '$(dangling_modules)' in PRODUCT_PACKAGES has nothing to install!)
|
$(error Module names '$(dangling_modules)' in PRODUCT_PACKAGES has nothing to install!)
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue