diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-09 02:20:28 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-09 02:20:28 +0000 |
| commit | bcdd892217f8dd600658a44d9c22f743ce051ab3 (patch) | |
| tree | 1fdcebaa6bc742b88dcfda25ab8feea166c53a23 /ext/extmk.rb | |
| parent | 867ec3a778384176402975dbc1c51599ebc2ed77 (diff) | |
| download | ruby-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.rb | 2 |
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 |
