mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* tool/compile_prelude.rb (c_esc): need to escape closing brace.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13926 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
af6a9d70b2
commit
4c56aaa162
3 changed files with 8 additions and 4 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Thu Nov 15 12:14:53 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
|
* tool/compile_prelude.rb (c_esc): need to escape closing brace.
|
||||||
|
|
||||||
Thu Nov 15 11:52:16 2007 Tanaka Akira <akr@fsij.org>
|
Thu Nov 15 11:52:16 2007 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
* tool/compile_prelude.rb: adjust RbConfig::CONFIG paths relative
|
* tool/compile_prelude.rb: adjust RbConfig::CONFIG paths relative
|
||||||
|
|
|
@ -36,7 +36,7 @@ lines_list = preludes.map {|filename|
|
||||||
end
|
end
|
||||||
if RbConfig::MAKEFILE_CONFIG.has_key? $1
|
if RbConfig::MAKEFILE_CONFIG.has_key? $1
|
||||||
val = RbConfig.expand("$(#$1)", mkconf)
|
val = RbConfig.expand("$(#$1)", mkconf)
|
||||||
need_ruby_prefix = true if /\A\#{ruby_prefix}/ =~ val
|
need_ruby_prefix = true if /\A\#{ruby_prefix\}/ =~ val
|
||||||
c_esc(val)
|
c_esc(val)
|
||||||
else
|
else
|
||||||
$&
|
$&
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#define RUBY_VERSION "1.9.0"
|
#define RUBY_VERSION "1.9.0"
|
||||||
#define RUBY_RELEASE_DATE "2007-11-14"
|
#define RUBY_RELEASE_DATE "2007-11-15"
|
||||||
#define RUBY_VERSION_CODE 190
|
#define RUBY_VERSION_CODE 190
|
||||||
#define RUBY_RELEASE_CODE 20071114
|
#define RUBY_RELEASE_CODE 20071115
|
||||||
#define RUBY_PATCHLEVEL 0
|
#define RUBY_PATCHLEVEL 0
|
||||||
|
|
||||||
#define RUBY_VERSION_MAJOR 1
|
#define RUBY_VERSION_MAJOR 1
|
||||||
|
@ -9,7 +9,7 @@
|
||||||
#define RUBY_VERSION_TEENY 0
|
#define RUBY_VERSION_TEENY 0
|
||||||
#define RUBY_RELEASE_YEAR 2007
|
#define RUBY_RELEASE_YEAR 2007
|
||||||
#define RUBY_RELEASE_MONTH 11
|
#define RUBY_RELEASE_MONTH 11
|
||||||
#define RUBY_RELEASE_DAY 14
|
#define RUBY_RELEASE_DAY 15
|
||||||
|
|
||||||
#ifdef RUBY_EXTERN
|
#ifdef RUBY_EXTERN
|
||||||
RUBY_EXTERN const char ruby_version[];
|
RUBY_EXTERN const char ruby_version[];
|
||||||
|
|
Loading…
Add table
Reference in a new issue