am c7973678: Merge "Default uninstallable modules\' tag to optional" into gingerbread

* commit 'c79736785716d56768998d64317ff90a62073868':
  Default uninstallable modules' tag to optional
This commit is contained in:
Ying Wang 2010-12-10 16:21:43 -08:00 committed by Android Git Automerger
commit 1f22360f60
1 changed files with 5 additions and 1 deletions

View File

@ -57,8 +57,12 @@ endif
LOCAL_MODULE_TAGS := $(sort $(LOCAL_MODULE_TAGS))
ifeq (,$(LOCAL_MODULE_TAGS))
# Modules without tags fall back to user (which is changed to user eng below)
ifeq (true,$(LOCAL_UNINSTALLABLE_MODULE))
LOCAL_MODULE_TAGS := optional
else
# Installable modules without tags fall back to user (which is changed to user eng below)
LOCAL_MODULE_TAGS := user
endif
#$(warning default tags: $(lastword $(filter-out config/% out/%,$(MAKEFILE_LIST))))
endif