From patchwork Sun Nov 4 19:58:37 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wolfgang Denk X-Patchwork-Id: 197089 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 3269F2C0109 for ; Mon, 5 Nov 2012 06:59:00 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id ADCE04A150; Sun, 4 Nov 2012 20:58:56 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id C-CZOq4w-ST9; Sun, 4 Nov 2012 20:58:56 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 1BF3B4A151; Sun, 4 Nov 2012 20:58:54 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 758D04A151 for ; Sun, 4 Nov 2012 20:58:48 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id x1FED7pq7Ytt for ; Sun, 4 Nov 2012 20:58:44 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mail-out.m-online.net (mail-out.m-online.net [212.18.0.9]) by theia.denx.de (Postfix) with ESMTPS id 278504A150 for ; Sun, 4 Nov 2012 20:58:42 +0100 (CET) Received: from frontend1.mail.m-online.net (unknown [192.168.8.180]) by mail-out.m-online.net (Postfix) with ESMTP id 3Xvnry0xBPz4KK3k; Sun, 4 Nov 2012 20:58:42 +0100 (CET) Received: from localhost (dynscan1.mnet-online.de [192.168.6.68]) by mail.m-online.net (Postfix) with ESMTP id 3Xvnry0gpyzbbhn; Sun, 4 Nov 2012 20:58:42 +0100 (CET) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from smtp-auth.mnet-online.de ([192.168.8.180]) by localhost (dynscan1.mail.m-online.net [192.168.6.68]) (amavisd-new, port 10024) with ESMTP id 5diCX9bFzWmj; Sun, 4 Nov 2012 20:56:29 +0100 (CET) X-Auth-Info: gH9pRX6Bz0pOOZbpVTJmh6QLUQ8fy3CeiAuPU8qCXXA= Received: from diddl.denx.de (host-80-81-18-216.customer.m-online.net [80.81.18.216]) by smtp-auth.mnet-online.de (Postfix) with ESMTPA; Sun, 4 Nov 2012 20:58:40 +0100 (CET) Received: from gemini.denx.de (unknown [10.0.0.2]) by diddl.denx.de (Postfix) with ESMTP id 121121A6D75; Sun, 4 Nov 2012 20:58:39 +0100 (CET) Received: from gemini.denx.de (localhost [IPv6:::1]) by gemini.denx.de (Postfix) with ESMTP id 5C16920065F; Sun, 4 Nov 2012 20:58:37 +0100 (CET) To: Tom Rini From: Wolfgang Denk MIME-Version: 1.0 In-reply-to: <20121104184959.GN15839@bill-the-cat> References: <20121104184959.GN15839@bill-the-cat> Comments: In-reply-to Tom Rini message dated "Sun, 04 Nov 2012 11:49:59 -0700." Date: Sun, 04 Nov 2012 20:58:37 +0100 Message-Id: <20121104195837.5C16920065F@gemini.denx.de> Cc: u-boot@lists.denx.de Subject: Re: [U-Boot] v2013.01-rc1 released X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.11 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de Dear Tom, In message <20121104184959.GN15839@bill-the-cat> you wrote: > > With the official closing of the merge window just past us now, I've > tagged v2013.01-rc1. Thanks a lot - a minor nitpick: as is, we have a somewhat ugly version string "2013.01.-rc1". Please consider (at least for future elease candidates) something like this: From 2ff9125440c6821d94b8e2ddf98d5dc75d6383c8 Mon Sep 17 00:00:00 2001 From: Wolfgang Denk Date: Sun, 4 Nov 2012 20:54:10 +0100 Subject: [PATCH] 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 --- Makefile | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index bc15209..e144eb1 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