X-Git-Url: http://sjero.net/git/?a=blobdiff_plain;f=build-aux%2Fbzr-version-gen;h=f22d14fd4228c8040e1809d7bb9be9546d5443f8;hb=5eb9c28b3192bfe3d83c07beb062c4a2f782eaf2;hp=f5804c9a003890bd7aa73fd0f46e03b0111b3c18;hpb=e36538b53a408cdcbf37c02f8f4eb0f1009a02c5;p=wget diff --git a/build-aux/bzr-version-gen b/build-aux/bzr-version-gen index f5804c9a..f22d14fd 100755 --- a/build-aux/bzr-version-gen +++ b/build-aux/bzr-version-gen @@ -1,8 +1,8 @@ #!/bin/sh -scriptversion=2010-05-09.22; # UTC +scriptversion=2011-08-11.08; # UTC -# Copyright (C) 2010 Free Software Foundation, Inc. +# Copyright (C) 2010, 2011 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -30,14 +30,14 @@ fi DIRTY="" -test -n "$(bzr diff | tr -d '\n')" && DIRTY="-dirty" +test -n "`bzr diff | tr -d '\n'`" && DIRTY="-dirty" -REVNO=$(bzr revno) +REVNO=`bzr revno` -TAG=$(bzr tags -r $REVNO | cut -d' ' -f1) +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"