Skip to content

Commit

Permalink
Use jsDelivr instead of git.savannah.gnu.org
Browse files Browse the repository at this point in the history
Somehow git.savannah.gnu.org is down now, so I'm using jsDelivr mirror
instead as ruby/ruby does.
  • Loading branch information
kateinoigakukun committed Jan 30, 2024
1 parent d13d659 commit c7f0918
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ruby_wasm/build/product/libyaml.rb
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ def build(executor)
executor.system "curl",
"-o",
"#{product_build_dir}/config/config.guess",
"https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD"
"https://cdn.jsdelivr.net/gh/gcc-mirror/gcc@master/config.guess"
executor.system "curl",
"-o",
"#{product_build_dir}/config/config.sub",
"https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD"
"https://cdn.jsdelivr.net/gh/gcc-mirror/gcc@master/config.sub"

executor.system "./configure", *configure_args, chdir: product_build_dir
executor.system "make",
Expand Down

0 comments on commit c7f0918

Please sign in to comment.