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.
This commit is contained in:
Nobuyoshi Nakada 2020-03-28 17:24:59 +09:00
Родитель 8c80922c82
Коммит 476ac00e49
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4BC7D6DF58D8DF60
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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")'