Commit ed28db0e ed28db0e96fe02ef941277ee497e2f0d8d79efc3 by Sergey Poznyakoff

Makefile.am: Remove gen_start_date

1 parent b77bc50e
This diff could not be displayed because it is too large.
......@@ -58,12 +58,10 @@ SUBDIRS = \
EXTRA_DIST = COPYING.LESSER
gen_start_date = 2008-05-05
.PHONY: make-ChangeLog
make-ChangeLog:
if test -d .git; then \
$(top_srcdir)/scripts/gitlog-to-changelog \
--since=$(gen_start_date) | \
$(top_srcdir)/scripts/gitlog-to-changelog | \
sed '/<unknown>$$/d' | fmt -s > $(distdir)/cl-t; \
echo " " >> $(distdir)/cl-t; \
echo "Local Variables:" >> $(distdir)/cl-t; \
......@@ -80,8 +78,7 @@ dist-hook: make-ChangeLog
.PHONY: ChangeLog
ChangeLog:
if test -d .git; then \
$(top_srcdir)/scripts/gitlog-to-changelog \
--since=$(gen_start_date) | \
$(top_srcdir)/scripts/gitlog-to-changelog | \
sed '/<unknown>$$/d' | fmt -s > ChangeLog; \
echo " " >> ChangeLog; \
echo "Local Variables:" >> ChangeLog; \
......