diff options
author | infirit <[email protected]> | 2013-12-16 20:33:52 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2013-12-16 21:13:26 +0100 |
commit | b856d1112a1211fcdcc5678923b32359c7ebfa6c (patch) | |
tree | 9fee135143eb666789f32dddf1178a83ab338ad0 | |
parent | 511e119fc6f25e46a28e6a83599f81b3e117b317 (diff) | |
download | mate-power-manager-b856d1112a1211fcdcc5678923b32359c7ebfa6c.tar.bz2 mate-power-manager-b856d1112a1211fcdcc5678923b32359c7ebfa6c.tar.xz |
Update changelog generation.
-rw-r--r-- | Makefile.am | 29 |
1 files changed, 11 insertions, 18 deletions
diff --git a/Makefile.am b/Makefile.am index 0691df3..edc59dc 100644 --- a/Makefile.am +++ b/Makefile.am @@ -41,23 +41,16 @@ DISTCHECK_CONFIGURE_FLAGS = \ --disable-applets \ --disable-tests -distclean-local: - if test $(srdcir) = .; then :; else \ - rm -f ChangeLog; \ - fi - -ChangeLog: - @echo Creating $@ - @if test -d "$(srcdir)/.git"; then \ - (GIT_DIR=$(top_srcdir)/.git ./missing --run git log --stat -M -C --name-status --date=short --no-color) | fmt --split-only > [email protected] \ - && mv -f [email protected] $@ \ - || ($(RM) [email protected]; \ - echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \ - (test -f $@ || echo git-log is required to generate this file >> $@)); \ +dist-hook: + @if test -d "$(srcdir)/.git"; \ + then \ + echo Creating ChangeLog && \ + ( cd "$(top_srcdir)" && \ + echo '# Generated by Makefile. Do not edit.'; echo; \ + $(top_srcdir)/missing --run git log --stat ) > ChangeLog.tmp \ + && mv -f ChangeLog.tmp $(distdir)/ChangeLog \ + || ( rm -f ChangeLog.tmp ; \ + echo Failed to generate ChangeLog >&2 ); \ else \ - test -f $@ || \ - (echo A git checkout and git-log is required to generate ChangeLog >&2 && \ - echo A git checkout and git-log is required to generate this file >> $@); \ + echo A git clone is required to generate a ChangeLog >&2; \ fi - -.PHONY: ChangeLog |