Sha256: 21204d0e578ab5d267dc13bda3b1e2d09c4f180d52438c2c79221e0bcd32f200
Contents?: true
Size: 549 Bytes
Versions: 56
Compression:
Stored size: 549 Bytes
Contents
#-- # 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::ConfigureBuilder < Gem::Ext::Builder def self.build(extension, directory, dest_path, results) unless File.exist?('Makefile') then cmd = "sh ./configure --prefix=#{dest_path}" cmd << " #{Gem::Command.build_args.join ' '}" unless Gem::Command.build_args.empty? run cmd, results end make dest_path, results results end end
Version data entries
56 entries across 56 versions & 2 rubygems