diff options
author | raveit65 <[email protected]> | 2016-04-07 13:48:25 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-04-07 13:48:25 +0200 |
commit | 32a20884ad1da566e7eaf03867cfed7c29000db0 (patch) | |
tree | dd8d72d53be0dfa65ed51ddd6b91d33351eb2d88 /Makefile.am | |
parent | 7f7a2bb8674028aad28ae6a506220b5a125c92c8 (diff) | |
download | mozo-32a20884ad1da566e7eaf03867cfed7c29000db0.tar.bz2 mozo-32a20884ad1da566e7eaf03867cfed7c29000db0.tar.xz |
Fix Changelog generation
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/Makefile.am b/Makefile.am index 1e4648a..75072cf 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,18 +21,12 @@ EXTRA_DIST = \ autogen.sh \ mozo.in +# Build ChangeLog from GIT history ChangeLog: - @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; \ + $(AM_V_GEN) if test -d $(top_srcdir)/.git; then \ + GIT_DIR="$(top_srcdir)/.git" git log --stat > $@; \ fi +dist: ChangeLog + .PHONY: ChangeLog |