summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-21 13:58:33 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-21 13:58:33 +0000
commitcefefb175c456caade559f526178dbd2a6e8e362 (patch)
tree86a612f00d7055acb16a67cfaa128a592beba5b6 /ext
parentaa4594d1a56c44b92e442f69da13882e3bb50956 (diff)
downloadruby-cefefb175c456caade559f526178dbd2a6e8e362.tar.gz
ruby-cefefb175c456caade559f526178dbd2a6e8e362.tar.xz
ruby-cefefb175c456caade559f526178dbd2a6e8e362.zip
* common.mk (no-install): not install rdoc actually.
* common.mk (install-doc, no-install-doc): use instruby.rb. * instruby.rb: rdoc installation. * ext/extmk.rb: expand ruby executable names. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@10985 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/extmk.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/extmk.rb b/ext/extmk.rb
index fb28fb11c..809f2fb03 100644
--- a/ext/extmk.rb
+++ b/ext/extmk.rb
@@ -487,7 +487,7 @@ rubies = []
%w[RUBY RUBYW STATIC_RUBY].each {|r|
n = r
if r = arg_config("--"+r.downcase) || config_string(r+"_INSTALL_NAME")
- rubies << r+EXEEXT
+ rubies << Config.expand(r+=EXEEXT)
$mflags << "#{n}=#{r}"
end
}