mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
8b424513fd
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17576 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
27 lines
625 B
Ruby
27 lines
625 B
Ruby
#--
|
|
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
|
|
# All rights reserved.
|
|
# See LICENSE.txt for permissions.
|
|
#++
|
|
|
|
require 'rubygems/ext/builder'
|
|
|
|
class Gem::Ext::RakeBuilder < Gem::Ext::Builder
|
|
|
|
def self.build(extension, directory, dest_path, results)
|
|
if File.basename(extension) =~ /mkrf_conf/i then
|
|
cmd = "#{Gem.ruby} #{File.basename extension}"
|
|
cmd << " #{ARGV.join " "}" unless ARGV.empty?
|
|
run cmd, results
|
|
end
|
|
|
|
cmd = ENV['rake'] || 'rake'
|
|
cmd += " RUBYARCHDIR=#{dest_path} RUBYLIBDIR=#{dest_path}" # ENV is frozen
|
|
|
|
run cmd, results
|
|
|
|
results
|
|
end
|
|
|
|
end
|
|
|