aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--tool/file2lastrev.rb4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 7a360346a2..705695ed58 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Dec 24 20:15:50 2008 Koichi Sasada <ko1@atdot.net>
+
+ * tool/file2lastrev.rb (get_revisions): fix to ignore end of line.
+
Wed Dec 24 13:33:38 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* configure.in (HAVE_LONG_LONG, HAVE_OFF_T): revised for autoconf
diff --git a/tool/file2lastrev.rb b/tool/file2lastrev.rb
index 73cc9997a9..01ac1bbced 100644
--- a/tool/file2lastrev.rb
+++ b/tool/file2lastrev.rb
@@ -24,12 +24,12 @@ def get_revisions(path)
`cd "#{SRCDIR}" && git svn info "#{path}"`
end
- if info =~ /^Revision: (\d+)$/
+ if /^Revision: (\d+)/ =~ info
last = $1
else
raise "last revision not found"
end
- if info =~ /^Last Changed Rev: (\d+)$/
+ if /^Last Changed Rev: (\d+)/ =~ info
changed = $1
else
raise "changed revision not found"