diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2007-10-09 15:54:58 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2007-10-09 15:54:58 -0400 |
commit | b12ed375cf7ad02a30324616e121a1e9ab8998cb (patch) | |
tree | 07a05b1750d8ce349dcebea04ee6a006199ac026 | |
parent | cbc4087a40aa7c6039ddadfca2a9876cb14e1bc6 (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.
-rw-r--r-- | ChangeLog.mk | 2 |
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; \ |