From 476ac00e493d5c3635c02c4fd4dac6167634b5e4 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sat, 28 Mar 2020 17:24:59 +0900 Subject: [PATCH] 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. --- defs/gmake.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/defs/gmake.mk b/defs/gmake.mk index 874a7aff95..cd72c49126 100644 --- a/defs/gmake.mk +++ b/defs/gmake.mk @@ -263,7 +263,7 @@ extract-gems: | $(patsubst %,.bundle/gems/%,$(BUNDLED_GEMS)) .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")'