ruby-changes:45830
From: naruse <ko1@a...>
Date: Sun, 12 Mar 2017 17:02:58 +0900 (JST)
Subject: [ruby-changes:45830] naruse:r57903 (ruby_2_4): merge revision(s) 57543: [Backport #13194]
naruse 2017-03-12 17:02:52 +0900 (Sun, 12 Mar 2017) New Revision: 57903 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=57903 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_4/ Modified files: branches/ruby_2_4/tool/rbinstall.rb branches/ruby_2_4/version.h Index: ruby_2_4/version.h =================================================================== --- ruby_2_4/version.h (revision 57902) +++ ruby_2_4/version.h (revision 57903) @@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_4/version.h#L1 #define RUBY_VERSION "2.4.0" #define RUBY_RELEASE_DATE "2017-03-12" -#define RUBY_PATCHLEVEL 60 +#define RUBY_PATCHLEVEL 61 #define RUBY_RELEASE_YEAR 2017 #define RUBY_RELEASE_MONTH 3 Index: ruby_2_4/tool/rbinstall.rb =================================================================== --- ruby_2_4/tool/rbinstall.rb (revision 57902) +++ ruby_2_4/tool/rbinstall.rb (revision 57903) @@ -29,7 +29,7 @@ rescue LoadError https://github.com/ruby/ruby/blob/trunk/ruby_2_4/tool/rbinstall.rb#L29 end STDOUT.sync = true -File.umask(077) +File.umask(0222) def parse_args(argv = ARGV) $mantype = 'doc' Property changes on: ruby_2_4 ___________________________________________________________________ Modified: svn:mergeinfo Merged /trunk:r57543 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/