summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2007-10-09 15:54:58 -0400
committerCarl Worth <cworth@cworth.org>2007-11-26 21:24:48 -0800
commit0368f0d2081b58feea0489e0d29ad413dca6a007 (patch)
treeddefc1781f8e764d9bc8d030a2a793f696193543
parent03906e1d81b1adace7e5a4668fb449a487812d70 (diff)
[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. (cherry picked from commit b12ed375cf7ad02a30324616e121a1e9ab8998cb)
-rw-r--r--ChangeLog.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/ChangeLog.mk b/ChangeLog.mk
index 15668244..1158fb28 100644
--- a/ChangeLog.mk
+++ b/ChangeLog.mk
@@ -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; \