]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Makefile: use EXTRAVERSION for -rc? tag
authorWolfgang Denk <wd@denx.de>
Mon, 5 Nov 2012 00:50:54 +0000 (17:50 -0700)
committerTom Rini <trini@ti.com>
Mon, 5 Nov 2012 00:50:54 +0000 (17:50 -0700)
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 <wd@denx.de>
Signed-off-by: Tom Rini <trini@ti.com>
Makefile

index bc15209c7c0bd8b2f77bdee9d7b602571d38bfdf..e144eb13caa6da6fc46a3b8823a442b8d045d7b5 100644 (file)
--- 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