summaryrefslogtreecommitdiff
path: root/defs
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-03-28 17:24:59 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-03-28 18:09:27 +0900
commit476ac00e493d5c3635c02c4fd4dac6167634b5e4 (patch)
treeaeb04274d89fbbe2538cc34482998ba8633b6105 /defs
parent8c80922c820c7cb1eddfdb8c06a067793955f09c (diff)
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.
Diffstat (limited to 'defs')
-rw-r--r--defs/gmake.mk2
1 files changed, 1 insertions, 1 deletions
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")'