summaryrefslogtreecommitdiffstats
path: root/instruby.rb
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-11-04 11:06:03 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-11-04 11:06:03 +0000
commita364cba4874c282b5a4ccd586ad473a56ac58d86 (patch)
treef79bf2cca4745e9f187471f9cf537fac284448db /instruby.rb
parent5e71748f393bc9eee345c588244624d2f79daef3 (diff)
downloadruby-a364cba4874c282b5a4ccd586ad473a56ac58d86.tar.gz
ruby-a364cba4874c282b5a4ccd586ad473a56ac58d86.tar.xz
ruby-a364cba4874c282b5a4ccd586ad473a56ac58d86.zip
* instruby.rb, lib/mkmf.rb: use CONFIG["ENABLE_SHARED"] instead of
checking whether CONFIG["configure-args"] includes "--enable-shared". git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3024 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'instruby.rb')
-rw-r--r--instruby.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/instruby.rb b/instruby.rb
index 48a0e4cf3..84aa430d4 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"]