ruby-changes:13713
From: nobu <ko1@a...>
Date: Tue, 27 Oct 2009 08:56:31 +0900 (JST)
Subject: [ruby-changes:13713] Ruby:r25503 (ruby_1_8, trunk): * mkconfig.rb: reverted r25443 because build_os is used in mkmf.rb
nobu 2009-10-27 08:56:13 +0900 (Tue, 27 Oct 2009) New Revision: 25503 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=25503 Log: * mkconfig.rb: reverted r25443 because build_os is used in mkmf.rb on some platforms. [ruby-core:26332] Modified files: branches/ruby_1_8/ChangeLog branches/ruby_1_8/mkconfig.rb trunk/ChangeLog trunk/tool/mkconfig.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 25502) +++ ChangeLog (revision 25503) @@ -1,3 +1,8 @@ +Tue Oct 27 08:56:11 2009 Nobuyoshi Nakada <nobu@r...> + + * mkconfig.rb: reverted r25443 because build_os is used in mkmf.rb + on some platforms. [ruby-core:26332] + Tue Oct 27 07:53:25 2009 Yukihiro Matsumoto <matz@r...> * gc.c (garbage_collect_with_gvl): do not garbage_collect when Index: tool/mkconfig.rb =================================================================== --- tool/mkconfig.rb (revision 25502) +++ tool/mkconfig.rb (revision 25503) @@ -77,7 +77,6 @@ when /^RUBY_SO_NAME$/; next if $so_name when /^arch$/; if val.empty? then val = arch else arch = val end when /^sitearch/; val = '$(arch)' if val.empty? - when /^build/; next end case val when /^\$\(ac_\w+\)$/; next Index: ruby_1_8/ChangeLog =================================================================== --- ruby_1_8/ChangeLog (revision 25502) +++ ruby_1_8/ChangeLog (revision 25503) @@ -1,3 +1,8 @@ +Tue Oct 27 08:56:11 2009 Nobuyoshi Nakada <nobu@r...> + + * mkconfig.rb: reverted r25443 because build_os is used in mkmf.rb + on some platforms. [ruby-core:26332] + Tue Oct 27 07:38:39 2009 Hidetoshi NAGAI <nagai@a...> * ext/tk/tcltklib.c,stubs.c: remove errors or warnings when compiled Index: ruby_1_8/mkconfig.rb =================================================================== --- ruby_1_8/mkconfig.rb (revision 25502) +++ ruby_1_8/mkconfig.rb (revision 25503) @@ -76,7 +76,6 @@ next if $install_name and /^RUBY_INSTALL_NAME$/ =~ name next if $so_name and /^RUBY_SO_NAME$/ =~ name next if /^(?:X|(?:MINI|RUN)RUBY$)/ =~ name - next if /^build/ =~ name if /^program_transform_name$/ =~ name and /^s(\\?.)(.*)\1$/ =~ val next if $install_name sep = %r"#{Regexp.quote($1)}" -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/