From 9c8d7523479709b210a004772ed14fb3c91fbdf5 Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 29 Feb 2016 07:31:56 +0000 Subject: mkconfig.rb: cross_compiling option * common.mk, tool/mkconfig.rb: set cross_compiling option from Makefile, but not from rbconfig.rb, which is just going to be created by this command. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53969 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- tool/mkconfig.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tool') diff --git a/tool/mkconfig.rb b/tool/mkconfig.rb index 63dbecb775..63d0520dba 100755 --- a/tool/mkconfig.rb +++ b/tool/mkconfig.rb @@ -8,11 +8,12 @@ # avoid warnings with -d. $install_name ||= nil $so_name ||= nil +$cross_compiling ||= nil arch = $arch or raise "missing -arch" version = $version or raise "missing -version" srcdir = File.expand_path('../..', __FILE__) -$:.replace [srcdir+"/lib"] unless defined?(CROSS_COMPILING) +$:.replace [srcdir+"/lib"] unless $cross_compiling == "yes" $:.unshift(".") require "fileutils" -- cgit v1.2.3