build: fix gen-ChangeLog call.

* Makefile.am: Be sure to catch errors, and fix option name
This commit is contained in:
Akim Demaille
2012-07-05 16:09:17 +02:00
parent 7a9e6d65ea
commit 813f7d3482

View File

@@ -67,12 +67,13 @@ gen_start_date = 2012-01-16
.PHONY: gen-ChangeLog .PHONY: gen-ChangeLog
gen-ChangeLog: gen-ChangeLog:
$(AM_V_GEN)if test -d $(srcdir)/.git; then \ $(AM_V_GEN)if test -d $(srcdir)/.git; then \
cl=$(distdir)/ChangeLog && \
rm -f $$cl.tmp && \
$(top_srcdir)/build-aux/gitlog-to-changelog \ $(top_srcdir)/build-aux/gitlog-to-changelog \
--strip-tab \ --strip-tab \
--strip-cherry-picked \ --strip-cherry-pick \
--no-cluster \ --no-cluster \
--amend=$(srcdir)/build-aux/git-log-fix \ --amend=$(srcdir)/build-aux/git-log-fix \
--since=$(gen_start_date) > $(distdir)/cl-t; \ --since=$(gen_start_date) > $$cl.tmp && \
rm -f $(distdir)/ChangeLog; \ mv -f $$cl.tmp $$cl; \
mv $(distdir)/cl-t $(distdir)/ChangeLog; \
fi fi