From 1ed047d133d094fb4c322a210d6500c1c7a74703 Mon Sep 17 00:00:00 2001 From: Reuben Thomas Date: Fri, 25 Mar 2011 01:07:30 +0000 Subject: [PATCH 3/3] Add missing tag name to git tag command. --- ChangeLog | 5 +++++ top/maint.mk | 2 +- 2 files changed, 6 insertions(+), 1 deletions(-) diff --git a/ChangeLog b/ChangeLog index 57c270b..89096d7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-03-25 Reuben Thomas + + maint.mk: Add missing version to VC-tag. + * top/maint.mk: git tag was missing actual tag name; add it. + 2011-03-24 Paul Eggert xmalloc: Do not leak if underlying realloc is C99 compatible. diff --git a/top/maint.mk b/top/maint.mk index 3f7d983..524b69f 100644 --- a/top/maint.mk +++ b/top/maint.mk @@ -33,7 +33,7 @@ GZIP_ENV = '--no-name --best $(gzip_rsyncable)' GIT = git VC = $(GIT) -VC-tag = git tag -s -m '$(VERSION)' -u '$(gpg_key_ID)' +VC-tag = git tag -s -m '$(VERSION)' 'v$(VERSION)' -u '$(gpg_key_ID)' VC_LIST = $(build_aux)/vc-list-files -C $(srcdir) -- 1.7.1