ruby-changes:16933
From: nobu <ko1@a...>
Date: Mon, 9 Aug 2010 00:18:58 +0900 (JST)
Subject: [ruby-changes:16933] Ruby:r28929 (trunk): * lib/mkmf.rb ($ignore_error): initialize after $nmake.
nobu 2010-08-09 00:18:46 +0900 (Mon, 09 Aug 2010) New Revision: 28929 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=28929 Log: * lib/mkmf.rb ($ignore_error): initialize after $nmake. Modified files: trunk/ChangeLog trunk/lib/mkmf.rb trunk/version.h Index: ChangeLog =================================================================== --- ChangeLog (revision 28928) +++ ChangeLog (revision 28929) @@ -1,3 +1,7 @@ +Mon Aug 9 00:18:44 2010 Nobuyoshi Nakada <nobu@r...> + + * lib/mkmf.rb ($ignore_error): initialize after $nmake. + Sun Aug 8 19:16:26 2010 Tanaka Akira <akr@f...> * ext/pathname/pathname.c (path_make_link): Pathname#make_link Index: lib/mkmf.rb =================================================================== --- lib/mkmf.rb (revision 28928) +++ lib/mkmf.rb (revision 28929) @@ -17,7 +17,6 @@ $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 $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)) Index: version.h =================================================================== --- version.h (revision 28928) +++ version.h (revision 28929) @@ -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" -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/