summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-09-09 11:30:31 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-09-09 11:30:31 +0000
commit4054b123d486d6b79cbb5f2b8cd6b2f4781ca563 (patch)
treecec7dfbcdde9c0b587c298d809ef380746da5b75
parent85cb9231a82508befab1059b8f4b729257bfd1c2 (diff)
Makefile.in: test-bundler-prepare
* Makefile.in (test-bundler-prepare): install with --install-dir option instead of GEM_HOME and GEM_PATH environment variables. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59791 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index abb8f71991..574b4891b6 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -476,9 +476,9 @@ enc/encinit.$(OBJEXT): enc/encinit.c $(SETUP)
test-bundler-precheck: $(arch)-fake.rb programs
-test-bundler-prepare:
- GEM_HOME=$(srcdir)/spec/rspec GEM_PATH=$(srcdir)/spec/rspec \
- $(XRUBY) "$(srcdir)/bin/gem" install --no-ri --no-rdoc --conservative 'rspec:~> 3.5'
+test-bundler-prepare: test-bundler-precheck
+ $(XRUBY) -C "$(srcdir)" bin/gem install --no-ri --no-rdoc \
+ --install-dir spec/rspec --conservative 'rspec:~> 3.5'
test-bundler: $(TEST_RUNNABLE)-test-bundler
yes-test-bundler: test-bundler-precheck test-bundler-prepare
$(gnumake_recursive)$(Q) \