diff options
author | Colin Walters <walters@verbum.org> | 2011-07-27 14:37:34 -0400 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2011-07-27 14:37:34 -0400 |
commit | 6937ba22b391347687b97cdb81e01b4ac2cab23b (patch) | |
tree | 3d8e41f4080ef4a9e56e11262c365e030f4ffad3 /Makefile.am | |
parent | 1e00f90fb726f8ab65e9672dce6071e3d9fe7fbd (diff) | |
download | gobject-introspection-6937ba22b391347687b97cdb81e01b4ac2cab23b.tar.gz |
build: Fix release bits
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index 01680a7f..f32889ff 100644 --- a/Makefile.am +++ b/Makefile.am @@ -89,13 +89,13 @@ VERSION=@VERSION@ DISTNAME=$(PACKAGE)-$(VERSION).tar$(COMPRESSION) TAG_VERSION=$(shell echo $(VERSION) |sed s/\\\./_/g) -prepare-release-tag: Makefile.release +prepare-release-tag: Makefile git tag -m "Tag $(TAG_VERSION)" -a $(TAG_PREFIX)$(TAG_VERSION) -prepare-minor-release: $(DISTNAME) prepare-release-tag +prepare-minor-release: $(DISTNAME) prepare-release-tag Makefile env top_srcdir=$(top_srcdir) python $(top_srcdir)/tools/verbump.py -upload-release: $(DISTNAME) +upload-release: $(DISTNAME) Makefile git log origin/master..master @echo -n "Ok to push? [y/N] "; read ans; test x$$ans == xy || exit 1 git push --tags origin master:master |