bzr-version-gen: consider only the last tag.

This commit is contained in:
Giuseppe Scrivano 2011-08-11 10:14:44 +02:00
parent 02e316f986
commit 5eb9c28b31
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2011-08-11 Giuseppe Scrivano <gscrivano@gnu.org>
* build-aux/bzr-version-gen (TAG): Consider only the last tag.
2011-08-10 Giuseppe Scrivano <gscrivano@gnu.org>
* configure.ac: Print usage string for --with-ssl.

View File

@ -1,6 +1,6 @@
#!/bin/sh
scriptversion=2011-08-09.13; # UTC
scriptversion=2011-08-11.08; # UTC
# Copyright (C) 2010, 2011 Free Software Foundation, Inc.
@ -37,7 +37,7 @@ REVNO=`bzr revno`
TAG=`bzr tags -r $REVNO | cut -d' ' -f1`
if test -z "$TAG"
then
TAG=`bzr tags -r ..$REVNO | cut -d' ' -f1`
TAG=`bzr tags --sort=time -r ..$REVNO | tail -n1 | cut -d' ' -f1`
# No tags yet
test -z "$TAG" && TAG="unknown"