From 9cedfbcb918176627a9ed0a462480e52c9991c6c Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 16 Feb 2016 00:51:48 +0000 Subject: rbinstall.rb: drive letter in without_destdir * tool/rbinstall.rb (without_destdir): just strip a drive letter which is prepended by with_destdir. pointed out by @DavidEGrayson. https://github.com/ruby/ruby/commit/0e5f9ae#commitcomment-16101763 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53840 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 7 +++++++ tool/rbinstall.rb | 1 - 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e697aa4b45..98b9773382 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Tue Feb 16 09:51:20 2016 Nobuyoshi Nakada + + * tool/rbinstall.rb (without_destdir): just strip a drive letter + which is prepended by with_destdir. + pointed out by @DavidEGrayson. + https://github.com/ruby/ruby/commit/0e5f9ae#commitcomment-16101763 + Tue Feb 16 04:42:13 2016 NARUSE, Yui * insns.def (opt_plus): simply use LONG2NUM() instead of wrongly diff --git a/tool/rbinstall.rb b/tool/rbinstall.rb index 1cca55d919..72cca6c18c 100755 --- a/tool/rbinstall.rb +++ b/tool/rbinstall.rb @@ -282,7 +282,6 @@ end def without_destdir(dir) return dir if !$destdir or $destdir.empty? - dir = dir.sub(/\A\w:/, '') if File::PATH_SEPARATOR == ';' dir.start_with?($destdir) ? dir[$destdir.size..-1] : dir end -- cgit v1.2.3