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

Commit c7973678 authored by Ying Wang's avatar Ying Wang Committed by Android (Google) Code Review
Browse files

Merge "Default uninstallable modules' tag to optional" into gingerbread

parents 2562a40e 2fd81cf1
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -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