From 8fa86b7dbc6cbc818e46883ae1a33d1cc1955682 Mon Sep 17 00:00:00 2001 From: Jakub Jermar Date: Mon, 12 Jun 2006 13:11:42 +0000 Subject: [PATCH] Move to 0.2.0.1 bugfixing release. When the EXTRAVERSION is non-zero, make the release string appear as e.g. 0.2.0.1. When the EXTRAVERSION is zero, then the release string appears as eg. 0.2.0. --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c9b158fab..dd3f7c1c1 100644 --- a/Makefile +++ b/Makefile @@ -32,9 +32,13 @@ VERSION = 0 PATCHLEVEL = 2 SUBLEVEL = 0 -EXTRAVERSION = +EXTRAVERSION = 1 NAME = Daylight -RELEASE = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) +ifdef EXTRAVERSION +RELEASE = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL).$(EXTRAVERSION) +else +RELEASE = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL) +endif ## Include configuration # -- 2.11.4.GIT