summaryrefslogtreecommitdiff
path: root/tool/make-snapshot
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-06-23 09:49:42 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-06-23 09:49:42 +0000
commit7a05e0ae9f1983bb6446ef64092b58cbaa26bc45 (patch)
tree6bc9ea314a63d2d90b8aa431bc4f540aea61b21f /tool/make-snapshot
parent6f3e8df133c7785ff6bb6f18d1faec81fefb3999 (diff)
* tool/config_files.rb: rename class ConfigFiles to Downloader.
* tool/get-config_files: ditto. * tool/make-snapshot: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46517 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool/make-snapshot')
-rwxr-xr-xtool/make-snapshot6
1 files changed, 3 insertions, 3 deletions
diff --git a/tool/make-snapshot b/tool/make-snapshot
index f154ac435a..17be5eaed2 100755
--- a/tool/make-snapshot
+++ b/tool/make-snapshot
@@ -218,11 +218,11 @@ def package(rev, destdir)
%w[config.guess config.sub].each do |conf|
next if File.exist?("tool/#{conf}")
begin
- require File.expand_path("config_files", $tooldir)
+ require File.expand_path("downloader", $tooldir)
rescue LoadError
- abort "Error!!! Copy 'config_files.rb' from 'tool' directory of the recent ruby repository!"
+ abort "Error!!! Copy 'downloader.rb' from 'tool' directory of the recent ruby repository!"
end
- ConfigFiles.download(conf, "tool")
+ Downloader.download(conf, "tool")
end
File.open(clean.add("cross.rb"), "w") do |f|
f.puts "Object.__send__(:remove_const, :CROSS_COMPILING) if defined?(CROSS_COMPILING)"