[ChangeLog.mk] Fix changelog generation rules

Previously it was trying to get logs of 1.2.0..1.4 while I really meant
was 1.2.0..1.4.0.  It was a simple typo.
This commit is contained in:
Behdad Esfahbod 2007-10-09 15:54:58 -04:00
parent cbc4087a40
commit b12ed375cf

View file

@ -66,7 +66,7 @@ $(srcdir)/ChangeLog.cache-% $(srcdir)/ChangeLog.pre-%:
to=$$version; \
test "x$$version" = x && version=$(CURR_CHANGELOG_VERSION); \
from=$(PREV_CHANGELOG_VERSION); \
test "x$$to" = x || version=$$version.0; \
test "x$$to" = x || to=$$to.0; \
test "x$$from" = xinitial || from=$$from.0; \
spec=$$from..$$to; \
fi; \