PA: Simplify the naming scheme
This commit removes the build tag, to instead only use dates. The arbitrary ALPHA/BETA/STABLE tags can only cause confusion for the user, serving no practical purpose, as our builds are to be released as stable enough for being used as daily drivers. Change-Id: I88f3581a2bb7feff88f0a132929909029c2a4833
This commit is contained in:
parent
74875e2b5f
commit
30983a9937
|
@ -1,8 +1,4 @@
|
|||
ifneq ($ROM_VERSION_TAG,"")
|
||||
VERSION := $(ROM_VERSION_MAJOR).$(ROM_VERSION_MINOR)$(ROM_VERSION_MAINTENANCE)-$(ROM_VERSION_TAG)
|
||||
else
|
||||
VERSION := $(ROM_VERSION_MAJOR).$(ROM_VERSION_MINOR)$(ROM_VERSION_MAINTENANCE)
|
||||
endif
|
||||
VERSION := $(ROM_VERSION_MAJOR).$(ROM_VERSION_MINOR)$(ROM_VERSION_MAINTENANCE)
|
||||
|
||||
export ROM_VERSION := $(VERSION)-$(shell date -u +%Y%m%d)
|
||||
|
||||
|
|
Loading…
Reference in New Issue