ruby-changes:35822
From: nobu <ko1@a...>
Date: Mon, 13 Oct 2014 20:44:56 +0900 (JST)
Subject: [ruby-changes:35822] nobu:r47904 (trunk): common.mk: update-gems for older BASERUBY
nobu 2014-10-13 20:44:50 +0900 (Mon, 13 Oct 2014) New Revision: 47904 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=47904 Log: 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] Modified files: trunk/ChangeLog trunk/common.mk Index: ChangeLog =================================================================== --- ChangeLog (revision 47903) +++ ChangeLog (revision 47904) @@ -1,3 +1,9 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Mon Oct 13 20:44:49 2014 Nobuyoshi Nakada <nobu@r...> + + * 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@g...> * lib/xmlrpc/parser.rb: added new parser class using libxml-ruby gem. Index: common.mk =================================================================== --- common.mk (revision 47903) +++ common.mk (revision 47904) @@ -1082,8 +1082,8 @@ update-config_files: PHONY https://github.com/ruby/ruby/blob/trunk/common.mk#L1082 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)' \ -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/