mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
eban
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@980 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d1fb5f16d5
commit
25aa3816b1
3 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
|||
Wed Sep 27 16:13:05 2000 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||
|
||||
* mkconfig.rb: variables should be expanded only if /\$\{?\w+\}?/.
|
||||
|
||||
Tue Sep 26 18:09:51 2000 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||
|
||||
* string.c: include <math.h>
|
||||
|
|
|
@ -39,7 +39,7 @@ File.foreach "config.status" do |$_|
|
|||
next if $install_name and name =~ /^RUBY_INSTALL_NAME$/
|
||||
next if $so_name and name =~ /^RUBY_SO_NAME$/
|
||||
v = " CONFIG[\"" + name + "\"] = " +
|
||||
val.sub(/^\s*(.*)\s*$/, '"\1"').gsub(/\$\{?([^(){}]+)\}?/) {
|
||||
val.sub(/^\s*(.*)\s*$/, '"\1"').gsub(/\$\{?(\w+)\}?/) {
|
||||
"\#{CONFIG[\\\"#{$1}\\\"]}"
|
||||
} + "\n"
|
||||
if fast[name]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#define RUBY_VERSION "1.6.1"
|
||||
#define RUBY_RELEASE_DATE "2000-09-26"
|
||||
#define RUBY_RELEASE_DATE "2000-09-27"
|
||||
#define RUBY_VERSION_CODE 161
|
||||
#define RUBY_RELEASE_CODE 20000926
|
||||
#define RUBY_RELEASE_CODE 20000927
|
||||
|
|
Loading…
Reference in a new issue