2007-11-10 02:48:56 -05:00
|
|
|
#--
|
|
|
|
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
|
|
|
|
# All rights reserved.
|
|
|
|
# See LICENSE.txt for permissions.
|
|
|
|
#++
|
|
|
|
|
|
|
|
require 'rubygems/ext/builder'
|
2009-06-09 17:38:59 -04:00
|
|
|
require 'rubygems/command'
|
2007-11-10 02:48:56 -05:00
|
|
|
|
|
|
|
class Gem::Ext::ExtConfBuilder < Gem::Ext::Builder
|
|
|
|
|
|
|
|
def self.build(extension, directory, dest_path, results)
|
|
|
|
cmd = "#{Gem.ruby} #{File.basename extension}"
|
2009-06-09 17:38:59 -04:00
|
|
|
cmd << " #{Gem::Command.build_args.join ' '}" unless Gem::Command.build_args.empty?
|
2007-11-10 02:48:56 -05:00
|
|
|
|
|
|
|
run cmd, results
|
|
|
|
|
|
|
|
make dest_path, results
|
|
|
|
|
|
|
|
results
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|