diff options
author | Cosimo Alfarano <cosimo.alfarano@collabora.co.uk> | 2010-01-29 19:02:04 +0000 |
---|---|---|
committer | Cosimo Alfarano <cosimo.alfarano@collabora.co.uk> | 2010-01-29 19:02:04 +0000 |
commit | 2e520db643e63c674ad955212f143ce1997189f2 (patch) | |
tree | 5f6aad7531b1f38b176d69393a02b7d1642b3c5b /tools/telepathy.am | |
parent | deb5b0460352f8ae9031621360c64f33b5c1c70b (diff) |
Added file for TP DBus extension support
Diffstat (limited to 'tools/telepathy.am')
-rw-r--r-- | tools/telepathy.am | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/tools/telepathy.am b/tools/telepathy.am index d061b89..93b73d2 100644 --- a/tools/telepathy.am +++ b/tools/telepathy.am @@ -3,10 +3,21 @@ dist-hook: chmod u+w ${distdir}/ChangeLog if test -d ${top_srcdir}/.git; then \ - git log --stat > ${distdir}/ChangeLog || \ - git log > ${distdir}/ChangeLog; \ + git log --date=iso $(CHANGELOG_RANGE) > ${distdir}/ChangeLog; \ fi +distcheck-hook: + @case @VERSION@ in \ + *.*.*.*) ;; \ + *) \ + if grep -r UNRELEASED $(CHECK_FOR_UNRELEASED); \ + then \ + echo "^^^ This is meant to be a release, but some files say UNRELEASED" >&2; \ + exit 2; \ + fi \ + ;; \ + esac + maintainer-upload-release: _maintainer-upload-release _maintainer-upload-release-check: |