mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
3 changed files with 7 additions and 3 deletions
|
@ -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>
|
||||
|
||||
* lib/getoptlong.rb: remove unused udoc/usage from example.
|
||||
|
|
|
@ -570,7 +570,7 @@ $mflags.unshift("topdir=#$topdir")
|
|||
ENV.delete("RUBYOPT")
|
||||
if $command_output
|
||||
message = "echo #{message}"
|
||||
cmd = sysquote($makeflags).join(' ')
|
||||
cmd = $makeflags.quote.join(' ')
|
||||
open($command_output, 'wb') do |f|
|
||||
case $command_output
|
||||
when /\.sh\z/
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#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_BRANCH_NAME "trunk"
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
|||
#define RUBY_VERSION_TEENY 1
|
||||
#define RUBY_RELEASE_YEAR 2009
|
||||
#define RUBY_RELEASE_MONTH 4
|
||||
#define RUBY_RELEASE_DAY 2
|
||||
#define RUBY_RELEASE_DAY 3
|
||||
|
||||
#ifdef RUBY_EXTERN
|
||||
RUBY_EXTERN const char ruby_version[];
|
||||
|
|
Loading…
Reference in a new issue