mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/mkmf.rb ($ignore_error): initialize after $nmake.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28929 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c60cd341e8
commit
a5e1a4b635
3 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
|||
Mon Aug 9 00:18:44 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* lib/mkmf.rb ($ignore_error): initialize after $nmake.
|
||||
|
||||
Sun Aug 8 19:16:26 2010 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* ext/pathname/pathname.c (path_make_link): Pathname#make_link
|
||||
|
|
|
@ -17,7 +17,6 @@ SRC_EXT = %w[c m].concat(CXX_EXT)
|
|||
$static = nil
|
||||
$config_h = '$(arch_hdrdir)/ruby/config.h'
|
||||
$default_static = $static
|
||||
$ignore_error = $nmake ? '' : ' 2> /dev/null || true'
|
||||
|
||||
unless defined? $configure_args
|
||||
$configure_args = {}
|
||||
|
@ -2028,6 +2027,7 @@ when $mswin
|
|||
when $bccwin
|
||||
$nmake = ?b if /Borland/i =~ `#{make} -h`
|
||||
end
|
||||
$ignore_error = $nmake ? '' : ' 2> /dev/null || true'
|
||||
|
||||
RbConfig::CONFIG["srcdir"] = CONFIG["srcdir"] =
|
||||
$srcdir = arg_config("--srcdir", File.dirname($0))
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#define RUBY_VERSION "1.9.3"
|
||||
#define RUBY_RELEASE_DATE "2010-08-08"
|
||||
#define RUBY_RELEASE_DATE "2010-08-09"
|
||||
#define RUBY_PATCHLEVEL -1
|
||||
#define RUBY_BRANCH_NAME "trunk"
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
|||
#define RUBY_VERSION_TEENY 1
|
||||
#define RUBY_RELEASE_YEAR 2010
|
||||
#define RUBY_RELEASE_MONTH 8
|
||||
#define RUBY_RELEASE_DAY 8
|
||||
#define RUBY_RELEASE_DAY 9
|
||||
|
||||
#include "ruby/version.h"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue