From f60ffc2109ee9c2cdc33c3a005ae9e47dc67b1e7 Mon Sep 17 00:00:00 2001 From: Dmitry Kasatkin Date: Fri, 18 May 2012 13:39:01 +0300 Subject: [PATCH] Remove forced tag creation Signed-off-by: Dmitry Kasatkin --- Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 11671b5..1c9cea9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -11,8 +11,8 @@ pkgname = $(PACKAGE_NAME)-$(PACKAGE_VERSION) tarname = $(pkgname).tar.gz $(tarname): - git tag -f v$(PACKAGE_VERSION) - git archive --format=tar --prefix=$(pkgname)/ v$(PACKAGE_VERSION) $(FILES) | gzip >$@; + git tag v$(PACKAGE_VERSION) + git archive --format=tar --prefix=$(pkgname)/ v$(PACKAGE_VERSION) $(FILES) | gzip >$@ tar: $(tarname) -- 2.7.4