diff options
author | raveit65 <[email protected]> | 2016-04-10 10:56:07 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-04-10 11:03:46 +0200 |
commit | da9feca48946e6e91a50a5383a488f6b23adc5c4 (patch) | |
tree | c4d807aeef9adb4f475fe32805f9c1cd1405be72 | |
parent | e276942773b3d668cf68c8a573170a8dd7256aaa (diff) | |
download | mate-themes-da9feca48946e6e91a50a5383a488f6b23adc5c4.tar.bz2 mate-themes-da9feca48946e6e91a50a5383a488f6b23adc5c4.tar.xz |
Fix Changelog generation
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | Makefile.am | 20 |
2 files changed, 10 insertions, 12 deletions
@@ -0,0 +1,2 @@ +The ChangeLog is auto-generated when releasing. If you are seeing this, use +'git log' for a detailed list of changes. diff --git a/Makefile.am b/Makefile.am index 193b6301..6d8e8565 100644 --- a/Makefile.am +++ b/Makefile.am @@ -14,20 +14,16 @@ EXTRA_DIST = \ DISTCLEANFILES=intltool-extract intltool-merge intltool-update -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 $(top_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 + # we don't want to install mo files, all translations are already stored # in theme files install-data-local: |