diff options
author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-07-25 14:46:46 +0000 |
---|---|---|
committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-07-25 14:46:46 +0000 |
commit | 94089e82a1276df9d222fba111d4d4763aac144a (patch) | |
tree | 44d23afcdc3a16754e3896bcfced816a3f096cd2 /instruby.rb | |
parent | f8971ef1b1765c804477b518ae80e3b79599dc3f (diff) | |
download | ruby-94089e82a1276df9d222fba111d4d4763aac144a.tar.gz |
eban
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@853 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'instruby.rb')
-rw-r--r-- | instruby.rb | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/instruby.rb b/instruby.rb index 809ab86f3f..0d06ad93ce 100644 --- a/instruby.rb +++ b/instruby.rb @@ -36,9 +36,11 @@ for dll in Dir['*.dll'] File.install dll, "#{bindir}/#{dll}", 0755, true end File.makedirs libdir, true -for lib in [CONFIG["LIBRUBY_SO"]] - if File.exist? lib - File.install lib, libdir, 0555, true +if CONFIG["LIBRUBY"] != CONFIG["LIBRUBY_A"] + for lib in [CONFIG["LIBRUBY"]] + if File.exist? lib + File.install lib, libdir, 0555, true + end end end Dir.chdir libdir |