diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2017-09-13 18:45:48 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2017-09-13 18:45:48 +0200 |
commit | ebe371dd93ad9b64804eb6dbebc0bbbb5fe50294 (patch) | |
tree | a07f943caa8ea65cf0d981bdc03a16c8ad04dafc | |
parent | d50afc09b36d8d30b03094c5583ea2f21f3ab4fc (diff) |
build: generate ChangeLog from git during dist
-rw-r--r-- | Makefile.am | 13 | ||||
-rwxr-xr-x | autogen.sh | 1 |
2 files changed, 13 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 4d2ce1a..bde0a2a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -9,6 +9,19 @@ DISTCHECK_CONFIGURE_FLAGS = \ --enable-mbim-qmux \ $(NULL) +ChangeLog: + $(AM_V_GEN) if test -d "$(srcdir)/.git"; then \ + (GIT_DIR=$(top_srcdir)/.git $(top_srcdir)/missing --run git log --stat) | fmt --split-only > $@.tmp \ + && mv -f $@.tmp $@ \ + || ($(RM) $@.tmp; \ + echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \ + (test -f $@ || echo git-log is required to generate this file >> $@)); \ + 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 >> $@); \ + fi + EXTRA_DIST = \ gtester.make \ COPYING.LIB @@ -14,7 +14,6 @@ PKG_NAME=libqmi } (cd $srcdir; - touch ChangeLog autoreconf --force --install --verbose ) |