1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* tool/downloader.rb: use config.guess in gcc repo.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48961 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2014-12-24 03:07:14 +00:00
parent 7979a5ad08
commit a270e96a14
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Wed Dec 24 05:40:52 2014 NARUSE, Yui <naruse@ruby-lang.org>
* tool/downloader.rb: use config.guess in gcc repo.
Wed Dec 24 11:50:19 2014 Koichi Sasada <ko1@atdot.net>
* hash.c (rb_hash_delete): return Qnil if there are no corresponding

View file

@ -3,7 +3,7 @@ require 'open-uri'
class Downloader
class GNU < self
def self.download(name, *rest)
super("http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=#{name};hb=HEAD", name, *rest)
super("http://gcc.gnu.org/git/?p=gcc.git;a=blob_plain;f=#{name};hb=HEAD", name, *rest)
end
end