* ext/extmk.rb: MINIRUBY is given via make-flag.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@23086 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-03-27 19:00:35 +00:00
parent 8f3eeafdbf
commit cc55fb42a4
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Sat Mar 28 04:00:00 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/extmk.rb: MINIRUBY is given via make-flag.
Wed Mar 25 00:20:38 2009 Akinori MUSHA <knu@iDaemons.org>
* lib/cgi.rb: $KCODE always holds its value in upper case.

View file

@ -349,7 +349,7 @@ end
EXEEXT = CONFIG['EXEEXT']
if CROSS_COMPILING
$ruby = CONFIG['MINIRUBY']
$ruby = $mflags.defined?("MINIRUBY") || CONFIG['MINIRUBY']
elsif sep = config_string('BUILD_FILE_SEPARATOR')
$ruby = "$(topdir:/=#{sep})#{sep}miniruby" + EXEEXT
else