ruby-changes:40938
From: nobu <ko1@a...>
Date: Thu, 10 Dec 2015 05:53:37 +0900 (JST)
Subject: [ruby-changes:40938] nobu:r53017 (trunk): mkconfig.rb: must not be frozen
nobu 2015-12-10 05:53:21 +0900 (Thu, 10 Dec 2015) New Revision: 53017 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=53017 Log: mkconfig.rb: must not be frozen * tool/mkconfig.rb: rbconfig must not be fronzen-string-literal to expand CONFIG hash. [ruby-core:72006] [Bug #11798] Modified files: trunk/ChangeLog trunk/tool/mkconfig.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 53016) +++ ChangeLog (revision 53017) @@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Thu Dec 10 05:53:18 2015 Nobuyoshi Nakada <nobu@r...> + + * tool/mkconfig.rb: rbconfig must not be fronzen-string-literal to + expand CONFIG hash. [ruby-core:72006] [Bug #11798] + Thu Dec 10 05:03:51 2015 Eric Wong <e@8...> * ext/socket/ifaddr.c (ifaddr_mark): remove empty function Index: tool/mkconfig.rb =================================================================== --- tool/mkconfig.rb (revision 53016) +++ tool/mkconfig.rb (revision 53017) @@ -172,6 +172,7 @@ prefix = vars.expand(vars["prefix"] ||= https://github.com/ruby/ruby/blob/trunk/tool/mkconfig.rb#L172 rubyarchdir = vars.expand(vars["rubyarchdir"] ||= "") relative_archdir = rubyarchdir.rindex(prefix, 0) ? rubyarchdir[prefix.size..-1] : rubyarchdir puts %[\ +# frozen-string-literal: false # This file was created by #{mkconfig} when ruby was built. It contains # build information for ruby which is used e.g. by mkmf to build # compatible native extensions. Any changes made to this file will be -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/