Fix bundled gems installation on a fresh clone

This commit is contained in:
David Rodríguez 2020-03-08 10:21:18 +01:00 коммит произвёл Nobuyoshi Nakada
Родитель 956e220ae2
Коммит 459670d47f
2 изменённых файлов: 6 добавлений и 11 удалений

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

@ -108,12 +108,7 @@ in the mail body (not subject) to the address
interpreter works well. If you see the message "`check succeeded`", your
Ruby works as it should (hopefully).
8. Optionally, run `make update-gems` and `make extract-gems`.
If you want to install bundled gems, run `make update-gems` and
`make extract-gems` before running `make install`.
9. Run '`make install`'.
8. Run '`make install`'.
This command will create the following directories and install files into
them.

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

@ -367,17 +367,17 @@ pkgconfig-data: $(ruby_pc)
$(ruby_pc): $(srcdir)/template/ruby.pc.in config.status
install-all: docs pre-install-all do-install-all post-install-all
pre-install-all:: all pre-install-local pre-install-ext pre-install-doc
pre-install-all:: all pre-install-local pre-install-ext pre-install-gem pre-install-doc
do-install-all: pre-install-all
$(INSTRUBY) --make="$(MAKE)" $(INSTRUBY_ARGS) $(INSTALL_DOC_OPTS)
post-install-all:: post-install-local post-install-ext post-install-doc
post-install-all:: post-install-local post-install-ext post-install-gem post-install-doc
@$(NULLCMD)
install-nodoc: pre-install-nodoc do-install-nodoc post-install-nodoc
pre-install-nodoc:: pre-install-local pre-install-ext
pre-install-nodoc:: pre-install-local pre-install-ext pre-install-gem
do-install-nodoc: main pre-install-nodoc
$(INSTRUBY) --make="$(MAKE)" $(INSTRUBY_ARGS) --exclude=doc
post-install-nodoc:: post-install-local post-install-ext
post-install-nodoc:: post-install-local post-install-ext post-install-gem
install-local: pre-install-local do-install-local post-install-local
pre-install-local:: pre-install-bin pre-install-lib pre-install-man
@ -543,7 +543,7 @@ post-install-doc::
@$(NULLCMD)
install-gem: pre-install-gem do-install-gem post-install-gem
pre-install-gem:: pre-install-bin pre-install-lib pre-install-man
pre-install-gem:: prepare-gems pre-install-bin pre-install-lib pre-install-man
do-install-gem: $(PROGRAM) pre-install-gem
$(INSTRUBY) --make="$(MAKE)" $(INSTRUBY_ARGS) --install=gem
post-install-gem::