diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2009-08-25 20:12:11 +0100 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2009-08-25 20:12:11 +0100 |
commit | 566313b350ffe0e42947621526d4e72fbe4eed18 (patch) | |
tree | 6eb50e9b6e3dc1fe2ab5cf479d72a767babe2a93 | |
parent | fd0db104dc3defa3b23695e7364ffcf8bfc65dbe (diff) |
Only write the changelog since 0.6.0 to ChangeLog, and don't use --stat
The changelog.gz in our Debian packages is now bigger than Gabble itself!
-rw-r--r-- | Makefile.am | 1 | ||||
-rw-r--r-- | tools/telepathy.am | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index d53eba0b6..6414f68b5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -18,4 +18,5 @@ check-local:: include tools/lcov.am LCOV_CHECK_ARGS = CHECK_TWISTED_SLEEP=6 +CHANGELOG_RANGE = telepathy-gabble-0.6.0.. include tools/telepathy.am diff --git a/tools/telepathy.am b/tools/telepathy.am index d061b8918..eff59a482 100644 --- a/tools/telepathy.am +++ b/tools/telepathy.am @@ -3,8 +3,7 @@ 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 $(CHANGELOG_RANGE) > ${distdir}/ChangeLog; \ fi maintainer-upload-release: _maintainer-upload-release |