Commit fe2b7bd8 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont Committed by Rafaël Carré

Revert "Copy the changelogs if they exist instead of generating them with git"

This reverts commit 70f620e7.
(cherry picked from commit 5badb86c)
parent 6a92f8b3
...@@ -50,15 +50,11 @@ EXTRA_DIST = \ ...@@ -50,15 +50,11 @@ EXTRA_DIST = \
DISTCLEANFILES = $(CHANGELOGS) DISTCLEANFILES = $(CHANGELOGS)
$(CHANGELOGS): Makefile.am $(CHANGELOGS): Makefile.am
if test -f "$(top_srcdir)/doc/$@"; then \ y="$$(echo "$@" | sed -e 's,ChangeLog-,,')" ; \
cp "$(top_srcdir)/doc/$@" "$@" ; \ git --git-dir=$(top_srcdir)/.git log\
else \ --since="$$y-01-01" \
y="$$(echo "$@" | sed -e 's,ChangeLog-,,')" ; \ --until="$$y-12-31 23:00:00 -0100" \
git --git-dir=$(top_srcdir)/.git log \ > "$@"
--since="$$y-01-01" \
--until="$$y-12-31 23:00:00 -0100" \
> "$@" ; \
fi
# This one needs to be rebuilt all the time :) # This one needs to be rebuilt all the time :)
.PHONY: ChangeLog-2008 .PHONY: ChangeLog-2008
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment