summaryrefslogtreecommitdiffstats
path: root/ext/extmk.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-08-31 10:30:33 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-08-31 10:30:33 +0000
commita1fd7d2ae86fd7627d74f216c187954a9ac3824a (patch)
treea14ada29405880c7f56c615067b6600815f54334 /ext/extmk.rb
parent4ae021c31c797c0951d8c3bb2263890c4f073369 (diff)
downloadruby-a1fd7d2ae86fd7627d74f216c187954a9ac3824a.tar.gz
ruby-a1fd7d2ae86fd7627d74f216c187954a9ac3824a.tar.xz
ruby-a1fd7d2ae86fd7627d74f216c187954a9ac3824a.zip
* ruby.h (struct RString): embed small strings.
(RSTRING_LEN): defined for accessing string members. (RSTRING_PTR): ditto. * string.c: use RSTRING_LEN and RSTRING_PTR. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10809 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 dbc1c92e5..a9fad432b 100644
--- a/ext/extmk.rb
+++ b/ext/extmk.rb
@@ -380,7 +380,7 @@ else
end
if $extout
- RbConfig.expand(extout = "#$extout", RbConfig::CONFIG.merge("topdir"=>$topdir))
+ RbConfig.expand(extout = "#{$extout}", RbConfig::CONFIG.merge("topdir"=>$topdir))
if $install
dest = RbConfig.expand($rubylibdir.dup)
unless $destdir.empty?