From 5a4f004d744a8cbc5f2ada61ac9a15fe9dd9ed8b Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 24 Apr 2010 07:27:18 +0000 Subject: * tool/rbinstall.rb: expand target file name. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27473 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- tool/rbinstall.rb | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'tool') diff --git a/tool/rbinstall.rb b/tool/rbinstall.rb index cf5827e6e2..845efcb73f 100755 --- a/tool/rbinstall.rb +++ b/tool/rbinstall.rb @@ -407,7 +407,7 @@ install?(:local, :comm, :bin, :'bin-comm') do next unless File.file?(src) next if /\/[.#]|(\.(old|bak|orig|rej|diff|patch|core)|~|\/core)$/i =~ src - name = trans[File.basename(src)] + name = RbConfig.expand(trans[File.basename(src)]) shebang = '' body = '' @@ -424,7 +424,7 @@ install?(:local, :comm, :bin, :'bin-comm') do open_for_install(cmd, $script_mode) do case $cmdtype when "bat" - [<<-"EOH".gsub(/^\s+/, ''), shebang, body, <<-"EOF".gsub(/^\s+/, '')].join.gsub(/$/, "\r") + [<<-"EOH".gsub(/^\s+/, ''), shebang, body, "__END__\n:endofruby\n"].join.gsub(/$/, "\r") @echo off @if not "%~d0" == "~d0" goto WinNT #{ruby_bin} -x "#{cmd}" %1 %2 %3 %4 %5 %6 %7 %8 %9 @@ -433,11 +433,8 @@ install?(:local, :comm, :bin, :'bin-comm') do "%~dp0#{ruby_install_name}" -x "%~f0" %* @goto endofruby EOH - __END__ - :endofruby - EOF when "cmd" - "#{<<"/EOH"}#{shebang}#{body}" + <<"/EOH" << shebang << body @"%~dp0#{ruby_install_name}" -x "%~f0" %* @exit /b %ERRORLEVEL% /EOH -- cgit v1.2.3