diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-11-04 11:06:03 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-11-04 11:06:03 +0000 |
commit | cf1575f17d67f685806b7cad8118436798510de0 (patch) | |
tree | f79bf2cca4745e9f187471f9cf537fac284448db /instruby.rb | |
parent | 6cff858589bed107ac6a1ec8db07cd654a4dbe07 (diff) |
* instruby.rb, lib/mkmf.rb: use CONFIG["ENABLE_SHARED"] instead of
checking whether CONFIG["configure-args"] includes "--enable-shared".
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3024 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'instruby.rb')
-rw-r--r-- | instruby.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/instruby.rb b/instruby.rb index 48a0e4cf33..84aa430d47 100644 --- a/instruby.rb +++ b/instruby.rb @@ -68,7 +68,7 @@ sitelibdir = destdir+CONFIG["sitelibdir"] sitearchlibdir = destdir+CONFIG["sitearchdir"] mandir = destdir+CONFIG["mandir"] + "/man1" configure_args = Shellwords.shellwords(CONFIG["configure_args"]) -enable_shared = configure_args.include?('--enable-shared') +enable_shared = CONFIG["ENABLE_SHARED"] == 'yes' dll = CONFIG["LIBRUBY_SO"] lib = CONFIG["LIBRUBY"] arc = CONFIG["LIBRUBY_A"] |