summaryrefslogtreecommitdiffstats
path: root/core/cleanbuild.mk
diff options
context:
space:
mode:
authorYing Wang <wangying@google.com>2011-03-15 13:19:30 -0700
committerYing Wang <wangying@google.com>2011-03-15 13:19:30 -0700
commit4f1ab92aac00a73276793ed25af669d112618a32 (patch)
treeecfbb02dd36c3d729bdf2df96525198a9944524c /core/cleanbuild.mk
parent374b3256d270f9320176330e4f836a1cb3955899 (diff)
downloadbuild-4f1ab92aac00a73276793ed25af669d112618a32.zip
build-4f1ab92aac00a73276793ed25af669d112618a32.tar.gz
build-4f1ab92aac00a73276793ed25af669d112618a32.tar.bz2
Move screen density config from PRODUCT_LOCALES to PRODUCT_AAPT_CONFIG
With this change, PRODUCT_LOCALES will contain only locales. Other aapt config flags, such as *dpi, small/normal/large/xlarge, should go to PRODUCT_AAPT_CONFIGS. Bug: 4086309 Change-Id: I922f153d79777a9522c542a3907111193b40e7b7
Diffstat (limited to 'core/cleanbuild.mk')
-rw-r--r--core/cleanbuild.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/cleanbuild.mk b/core/cleanbuild.mk
index 821b03a..2639cae 100644
--- a/core/cleanbuild.mk
+++ b/core/cleanbuild.mk
@@ -117,13 +117,13 @@ else
building_sdk :=
endif
-# A change in the list of locales warrants an installclean, too.
-locale_list := $(subst $(space),$(comma),$(strip $(PRODUCT_LOCALES)))
+# A change in the list of aapt configs warrants an installclean, too.
+aapt_config_list := $(strip $(PRODUCT_AAPT_CONFIG))
current_build_config := \
- $(TARGET_PRODUCT)-$(TARGET_BUILD_VARIANT)$(building_sdk)-{$(locale_list)}
+ $(TARGET_PRODUCT)-$(TARGET_BUILD_VARIANT)$(building_sdk)-{$(aapt_config_list)}
building_sdk :=
-locale_list :=
+aapt_config_list :=
force_installclean := false
# Read the current state from the file, if present.