From: Wolfgang Denk Date: Mon, 5 Nov 2012 00:50:54 +0000 (-0700) Subject: Makefile: use EXTRAVERSION for -rc? tag X-Git-Tag: v2013.01-rc2~147 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a6e8dcaf350fe8e780e29c57ececfece039725c7;p=u-boot Makefile: use EXTRAVERSION for -rc? tag When using SUBLEVEL for the -rc? tag, this results in an ugly version string like "2013.01.-rc1" - let's use EXTRAVERSION instead to get the simple "2013.01-rc1" Signed-off-by: Wolfgang Denk Signed-off-by: Tom Rini --- diff --git a/Makefile b/Makefile index bc15209c7c..e144eb13ca 100644 --- a/Makefile +++ b/Makefile @@ -23,8 +23,8 @@ VERSION = 2013 PATCHLEVEL = 01 -SUBLEVEL = -rc1 -EXTRAVERSION = +SUBLEVEL = +EXTRAVERSION = -rc1 ifneq "$(SUBLEVEL)" "" U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) else