ruby-changes:46081
From: nagachika <ko1@a...>
Date: Mon, 27 Mar 2017 23:37:59 +0900 (JST)
Subject: [ruby-changes:46081] nagachika:r58152 (ruby_2_3): merge revision(s) 57543: [Backport #13194]
nagachika 2017-03-27 23:37:54 +0900 (Mon, 27 Mar 2017) New Revision: 58152 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=58152 Log: merge revision(s) 57543: [Backport #13194] rbinstall.rb: default umask * tool/rbinstall.rb: revert r49841 and default umask to just prohibit all from writing. symlink(2) has no argument to set permissions but is affected by umask. [ruby-dev:49975] [Bug #13194] Modified directories: branches/ruby_2_3/ Modified files: branches/ruby_2_3/tool/rbinstall.rb branches/ruby_2_3/version.h Index: ruby_2_3/version.h =================================================================== --- ruby_2_3/version.h (revision 58151) +++ ruby_2_3/version.h (revision 58152) @@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_3/version.h#L1 #define RUBY_VERSION "2.3.3" #define RUBY_RELEASE_DATE "2017-03-27" -#define RUBY_PATCHLEVEL 263 +#define RUBY_PATCHLEVEL 264 #define RUBY_RELEASE_YEAR 2017 #define RUBY_RELEASE_MONTH 3 Index: ruby_2_3/tool/rbinstall.rb =================================================================== --- ruby_2_3/tool/rbinstall.rb (revision 58151) +++ ruby_2_3/tool/rbinstall.rb (revision 58152) @@ -26,7 +26,7 @@ rescue LoadError https://github.com/ruby/ruby/blob/trunk/ruby_2_3/tool/rbinstall.rb#L26 end STDOUT.sync = true -File.umask(077) +File.umask(0222) def parse_args(argv = ARGV) $mantype = 'doc' Property changes on: ruby_2_3 ___________________________________________________________________ Modified: svn:mergeinfo Merged /trunk:r57543 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/