diff options
author | Ying Wang <wangying@google.com> | 2014-07-17 13:59:59 -0700 |
---|---|---|
committer | Ying Wang <wangying@google.com> | 2014-07-17 14:01:12 -0700 |
commit | b2be5ffdeda3a33d454dc7ee1b22578d1c3cff52 (patch) | |
tree | bdb489654c854d35e476cf2d73ad84b87f6adcb3 /core | |
parent | bc30611f8e08361a41c7e78c799732a7f685e568 (diff) | |
download | build-b2be5ffdeda3a33d454dc7ee1b22578d1c3cff52.zip build-b2be5ffdeda3a33d454dc7ee1b22578d1c3cff52.tar.gz build-b2be5ffdeda3a33d454dc7ee1b22578d1c3cff52.tar.bz2 |
Remove linker64 and debuggerd64
We don't have separate *64 module names any more.
Now both 32-bit and 64-bit variants are built under the same module name.
Change-Id: I1956a6a88ec6fe280798be01928239d098dfe27a
Diffstat (limited to 'core')
-rw-r--r-- | core/main.mk | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/core/main.mk b/core/main.mk index c65fe3c..8868768 100644 --- a/core/main.mk +++ b/core/main.mk @@ -768,10 +768,6 @@ ifdef is_sdk_build $(foreach m, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES), \ $(if $(strip $(ALL_MODULES.$(m).INSTALLED) $(ALL_MODULES.$(m)$(TARGET_2ND_ARCH_MODULE_SUFFIX).INSTALLED)),,\ $(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),) $(error Module names '$(dangling_modules)' in PRODUCT_PACKAGES has nothing to install!) endif |