From 9f69bef99bdaf542e3cc93215bcf5e1dbba1b91b Mon Sep 17 00:00:00 2001 From: naruse Date: Tue, 11 Dec 2012 16:18:01 +0000 Subject: * tool/make-snapshot: add --disable-rubygem to both MINIRUBY and RUBY. On making miniprelude.c, it seems use MINIRUBY. this fixes #7541 but rubygems also needs to be fixed for older rubies. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38327 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- tool/make-snapshot | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'tool') diff --git a/tool/make-snapshot b/tool/make-snapshot index cc4bc711f9..971dfd861e 100755 --- a/tool/make-snapshot +++ b/tool/make-snapshot @@ -69,9 +69,11 @@ path = ENV["PATH"].split(File::PATH_SEPARATOR) end end -`#{ENV["BASERUBY"]} --disable-gem -e1 2>&1` -if $?.success? - ENV["BASERUBY"] += ' --disable-gems' +%w[BASERUBY RUBY MINIRUBY].each do |var| + `#{ENV[var]} --disable-gem -e1 2>&1` + if $?.success? + ENV[var] += ' --disable-gem' + end end if $help or $_help -- cgit v1.2.3