Allow maintenance versions to be ignored

CyanogenMod builds shouldn't show maintenance versions.  Allow the
environment to override this behavior instead

Change-Id: I77c924a13122c8e1d9af14501e46bc532f7aefbd
This commit is contained in:
Scott Mertz 2016-08-05 12:24:19 -07:00
parent a516c2f0ac
commit a995059030
1 changed files with 6 additions and 1 deletions

View File

@ -233,7 +233,12 @@ DEVICE_PACKAGE_OVERLAYS += vendor/cm/overlay/common
PRODUCT_VERSION_MAJOR = 13
PRODUCT_VERSION_MINOR = 0
PRODUCT_VERSION_MAINTENANCE = 1
ifeq ($(TARGET_VENDOR_SHOW_MAINTENANCE_VERSION),true)
PRODUCT_VERSION_MAINTENANCE := 1
else
# 0 is ignored
PRODUCT_VERSION_MAINTENANCE := 0
endif
# Set CM_BUILDTYPE from the env RELEASE_TYPE, for jenkins compat