diff options
author | raveit65 <[email protected]> | 2016-04-07 17:34:18 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-04-07 17:34:18 +0200 |
commit | a74be88e97d7cb357989d04bf3407b9d22a1348c (patch) | |
tree | 5695aede090a4d0c003d439e1d58fb38533f340f | |
parent | f4e6badd1181c65d39d1b6307ecfab7a0f30ea61 (diff) | |
download | python-caja-a74be88e97d7cb357989d04bf3407b9d22a1348c.tar.bz2 python-caja-a74be88e97d7cb357989d04bf3407b9d22a1348c.tar.xz |
Fix Changelog generation
-rw-r--r-- | Makefile.am | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/Makefile.am b/Makefile.am index 6c0d307..505b848 100644 --- a/Makefile.am +++ b/Makefile.am @@ -19,16 +19,12 @@ CLEANFILES = libcaja-python.caja-extension DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc --with-cajadir='$${libdir}/caja/extensions-2.0-distcheck' -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 \ - echo A git clone is required to generate a ChangeLog >&2; \ +# Build ChangeLog from GIT history +ChangeLog: + $(AM_V_GEN) if test -d $(top_srcdir)/.git; then \ + GIT_DIR="$(top_srcdir)/.git" git log --stat > $@; \ fi + +dist: ChangeLog + +.PHONY: ChangeLog |