1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

common.mk: update-gems for older BASERUBY

* common.mk (update-gems): chdir to the target directory and then
  add the tool directory to load paths, for older BASERUBY.
  [Bug #10372][ruby-core:65630]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47904 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2014-10-13 11:44:50 +00:00
parent caa54c1715
commit f77d22d1fe
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
Mon Oct 13 20:44:49 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
* common.mk (update-gems): chdir to the target directory and then
add the tool directory to load paths, for older BASERUBY.
[Bug #10372][ruby-core:65630]
Mon Oct 13 17:53:01 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* lib/xmlrpc/parser.rb: added new parser class using libxml-ruby gem.

View file

@ -1082,8 +1082,8 @@ update-config_files: PHONY
update-gems: PHONY
$(ECHO) Downloading bundled gem files...
$(Q) $(RUNRUBY) -I$(srcdir)/tool -rdownloader -answ \
-C "$(srcdir)/gems" \
$(Q) $(RUNRUBY) -C "$(srcdir)/gems" \
-I../tool -rdownloader -answ \
-e 'gem, ver = *$$F' \
-e 'gem = "#{gem}-#{ver}.gem"' \
-e 'Downloader::RubyGems.download(gem)' \