ruby-changes:60549
From: Nobuyoshi <ko1@a...>
Date: Sat, 28 Mar 2020 18:31:06 +0900 (JST)
Subject: [ruby-changes:60549] 476ac00e49 (master): Deal with bundled gems by BASERUBY
https://git.ruby-lang.org/ruby.git/commit/?id=476ac00e49 From 476ac00e493d5c3635c02c4fd4dac6167634b5e4 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada <nobu@r...> Date: Sat, 28 Mar 2020 17:24:59 +0900 Subject: Deal with bundled gems by BASERUBY As the currently released/snapshot tarballs should contain the bundled gems extracted already, RUNRUBY is not required when building from them with GNU make. diff --git a/defs/gmake.mk b/defs/gmake.mk index 874a7af..cd72c49 100644 --- a/defs/gmake.mk +++ b/defs/gmake.mk @@ -263,7 +263,7 @@ extract-gems: | $(patsubst %,.bundle/gems/%,$(BUNDLED_GEMS)) https://github.com/ruby/ruby/blob/trunk/defs/gmake.mk#L263 .bundle/gems/%: gems/%.gem | .bundle/gems $(ECHO) Extracting bundle gem $*... - $(Q) $(RUNRUBY) -C "$(srcdir)" \ + $(Q) $(BASERUBY) -C "$(srcdir)" \ -Itool -rgem-unpack \ -e 'Gem.unpack("gems/$(@F).gem", ".bundle/gems")' -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/