* ext/extmk.rb: quotes arguments with spaces always.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23125 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
12bbcbb363
commit
2b7279ba5f
@ -1,3 +1,7 @@
|
|||||||
|
Fri Apr 3 12:45:55 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* ext/extmk.rb: quotes arguments with spaces always.
|
||||||
|
|
||||||
Thu Apr 2 14:50:06 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Thu Apr 2 14:50:06 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
* lib/getoptlong.rb: remove unused udoc/usage from example.
|
* lib/getoptlong.rb: remove unused udoc/usage from example.
|
||||||
|
@ -570,7 +570,7 @@ $mflags.unshift("topdir=#$topdir")
|
|||||||
ENV.delete("RUBYOPT")
|
ENV.delete("RUBYOPT")
|
||||||
if $command_output
|
if $command_output
|
||||||
message = "echo #{message}"
|
message = "echo #{message}"
|
||||||
cmd = sysquote($makeflags).join(' ')
|
cmd = $makeflags.quote.join(' ')
|
||||||
open($command_output, 'wb') do |f|
|
open($command_output, 'wb') do |f|
|
||||||
case $command_output
|
case $command_output
|
||||||
when /\.sh\z/
|
when /\.sh\z/
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#define RUBY_VERSION "1.9.2"
|
#define RUBY_VERSION "1.9.2"
|
||||||
#define RUBY_RELEASE_DATE "2009-04-02"
|
#define RUBY_RELEASE_DATE "2009-04-03"
|
||||||
#define RUBY_PATCHLEVEL -1
|
#define RUBY_PATCHLEVEL -1
|
||||||
#define RUBY_BRANCH_NAME "trunk"
|
#define RUBY_BRANCH_NAME "trunk"
|
||||||
|
|
||||||
@ -8,7 +8,7 @@
|
|||||||
#define RUBY_VERSION_TEENY 1
|
#define RUBY_VERSION_TEENY 1
|
||||||
#define RUBY_RELEASE_YEAR 2009
|
#define RUBY_RELEASE_YEAR 2009
|
||||||
#define RUBY_RELEASE_MONTH 4
|
#define RUBY_RELEASE_MONTH 4
|
||||||
#define RUBY_RELEASE_DAY 2
|
#define RUBY_RELEASE_DAY 3
|
||||||
|
|
||||||
#ifdef RUBY_EXTERN
|
#ifdef RUBY_EXTERN
|
||||||
RUBY_EXTERN const char ruby_version[];
|
RUBY_EXTERN const char ruby_version[];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user