diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2008-12-08 17:40:31 +0100 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2008-12-16 14:47:36 -0800 |
commit | 55e8d740881ef622376440819119641e67aeb285 (patch) | |
tree | 4501600dd0372f53c9c2c62c2402c370c0c75392 /xorgversion.m4 | |
parent | 88920d0896be5194f626888d5d8b54edd1ffe1f6 (diff) |
fix distcheck target
Arrange that distcleancheck ignores ChangeLog left over by distclean.
Don't mention ChangeLog under *CLEANFILES, can't be rebuilt from release
tarball; ChangeLog is automatically distributed, no need to mention it.
Diffstat (limited to 'xorgversion.m4')
-rw-r--r-- | xorgversion.m4 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xorgversion.m4 b/xorgversion.m4 index edfc0fb..881955d 100644 --- a/xorgversion.m4 +++ b/xorgversion.m4 @@ -67,9 +67,12 @@ AC_DEFUN([XORG_RELEASE_VERSION],[ # Defines the variable CHANGELOG_CMD as the command to generate # ChangeLog from git. # +# Arrange that distcleancheck ignores ChangeLog left over by distclean. +# AC_DEFUN([XORG_CHANGELOG], [ CHANGELOG_CMD="(GIT_DIR=\$(top_srcdir)/.git git log > .changelog.tmp && \ mv .changelog.tmp ChangeLog) || (rm -f .changelog.tmp; touch ChangeLog; \ echo 'git directory not found: installing possibly empty changelog.' >&2)" AC_SUBST([CHANGELOG_CMD]) +AC_SUBST([distcleancheck_listfiles], ['find . -type f ! -name ChangeLog -print']) ]) # XORG_CHANGELOG |