aboutsummaryrefslogtreecommitdiffstats
path: root/tool/downloader.rb
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-24 03:07:14 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-24 03:07:14 +0000
commita270e96a14b36dc70c560c22f1f31bda59c5dad0 (patch)
treeafa3c5e10c652b5acdc7f44569e17b87aef1b177 /tool/downloader.rb
parent7979a5ad085508a759216c7831dcff0e5d76fe40 (diff)
downloadruby-a270e96a14b36dc70c560c22f1f31bda59c5dad0.tar.gz
* 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
Diffstat (limited to 'tool/downloader.rb')
-rw-r--r--tool/downloader.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/downloader.rb b/tool/downloader.rb
index 8f37c9823f..cb7ba8213e 100644
--- a/tool/downloader.rb
+++ b/tool/downloader.rb
@@ -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