summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-08-03 23:04:16 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-08-03 23:04:16 +0000
commit6c3f291ba17bd178562a16ac157aef7bb2dbd958 (patch)
treec7986ab91c65cd102449cc258fb966b95038b76c /ext
parentc503845053cb7bf43e790a9221c1242b74864ace (diff)
downloadruby-6c3f291ba17bd178562a16ac157aef7bb2dbd958.tar.gz
ruby-6c3f291ba17bd178562a16ac157aef7bb2dbd958.tar.xz
ruby-6c3f291ba17bd178562a16ac157aef7bb2dbd958.zip
* ext/extmk.rb (extmake): should not modify $mflags for each
extentions. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8903 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/extmk.rb7
1 files changed, 5 insertions, 2 deletions
diff --git a/ext/extmk.rb b/ext/extmk.rb
index c63236c59..73cd6a1d5 100644
--- a/ext/extmk.rb
+++ b/ext/extmk.rb
@@ -158,7 +158,7 @@ def extmake(target)
end
args = sysquote($mflags)
unless $destdir.to_s.empty? or $mflags.include?("DESTDIR")
- args << sysquote("DESTDIR=" + relative_from($destdir, "../"+prefix))
+ args += sysquote("DESTDIR=" + relative_from($destdir, "../"+prefix))
end
if $static
args += ["static"] unless $clean
@@ -429,7 +429,7 @@ SRC
$extpath.delete("$(topdir)")
$extflags = libpathflag($extpath) << " " << $extflags.strip
conf = [
- ['SETUP', $setup], [$enable_shared ? 'DLDOBJS' : 'EXTOBJS', $extobjs],
+ ['SETUP', $setup], [$enable_shared && !$force_static ? 'DLDOBJS' : 'EXTOBJS', $extobjs],
['EXTLIBS', $extlibs.join(' ')], ['EXTLDFLAGS', $extflags]
].map {|n, v|
"#{n}=#{v}" if v and !(v = v.strip).empty?
@@ -456,6 +456,9 @@ puts "making #{rubies.join(', ')}"
$stdout.flush
$mflags.concat(rubies)
+if $nmake == ?b
+ $mflags.collect {|flag| flag.sub!(/\A(?=\w+=)/, "-D")}
+end
system($make, *sysquote($mflags)) or exit($?.exitstatus)
#Local variables: