mkconfig.rb: embed version substring

* tool/mkconfig.rb (RbConfig): embed substring of the version, not
  at the runtime, and fall back to the version itself for the case
  it does not include the teeny version.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50094 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2015-03-26 00:30:07 +00:00
Родитель 95de0e6841
Коммит 733a03c285
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -171,7 +171,7 @@ puts %[\
# changes made to this file will be lost the next time ruby is built.
module RbConfig
RUBY_VERSION.start_with?("#{version}"[/^[0-9]+[.][0-9]+[.]/]) or
RUBY_VERSION.start_with?("#{version[/^[0-9]+\.[0-9]+\./] || version}") or
raise "ruby lib version (#{version}) doesn't match executable version (\#{RUBY_VERSION})"
]