ruby-changes:46922
From: odaira <ko1@a...>
Date: Thu, 8 Jun 2017 07:25:31 +0900 (JST)
Subject: [ruby-changes:46922] odaira:r59036 (trunk): * tool/make-snapshot: prefer to use a make command
odaira 2017-06-08 07:25:23 +0900 (Thu, 08 Jun 2017) New Revision: 59036 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=59036 Log: * tool/make-snapshot: prefer to use a make command set in the MAKE or make env variable. Modified files: trunk/tool/make-snapshot Index: tool/make-snapshot =================================================================== --- tool/make-snapshot (revision 59035) +++ tool/make-snapshot (revision 59036) @@ -331,7 +331,7 @@ update-gems: https://github.com/ruby/ruby/blob/trunk/tool/make-snapshot#L331 f.puts "prereq: update-download" f.puts mk end - system("make", "prereq", *args.map {|arg| arg.join("=")}) + system(ENV["MAKE"] || ENV["make"] || "make", "prereq", *args.map {|arg| arg.join("=")}) clean.push("rbconfig.rb", ".rbconfig.time", "enc.mk") print "prerequisites" else -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/