summaryrefslogtreecommitdiffstats
path: root/ext/extmk.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-09 02:20:28 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-09 02:20:28 +0000
commitbcdd892217f8dd600658a44d9c22f743ce051ab3 (patch)
tree1fdcebaa6bc742b88dcfda25ab8feea166c53a23 /ext/extmk.rb
parent867ec3a778384176402975dbc1c51599ebc2ed77 (diff)
downloadruby-bcdd892217f8dd600658a44d9c22f743ce051ab3.tar.gz
ruby-bcdd892217f8dd600658a44d9c22f743ce051ab3.tar.xz
ruby-bcdd892217f8dd600658a44d9c22f743ce051ab3.zip
* ext/extmk.rb (extmake): should not reduce necessary libraries.
[ruby-dev:22440] * lib/mkmf.rb (merge_libs): merge libraries according to dependency. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5421 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/extmk.rb')
-rw-r--r--ext/extmk.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/extmk.rb b/ext/extmk.rb
index 21d82ff32..04d559a54 100644
--- a/ext/extmk.rb
+++ b/ext/extmk.rb
@@ -109,7 +109,7 @@ def extmake(target)
$extpath ||= []
$extflags += " " + $DLDFLAGS unless $DLDFLAGS.empty?
$extflags += " " + $LDFLAGS unless $LDFLAGS.empty?
- $extlibs |= $libs.split | $LOCAL_LIBS.split
+ $extlibs = merge_libs($extlibs, $libs.split, $LOCAL_LIBS.split)
$extpath |= $LIBPATH
end
ensure