git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@811 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2000-07-04 04:22:02 +00:00
parent 4f51d81418
commit 38402e0415
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Tue Jul 4 13:20:56 2000 WATANABE Hirofumi <eban@os.rim.or.jp>
* ext/extmk.rb.in: make command line must be single-quoted.
$(RUBY_INSTALL_NAME) is command substitution in the POSIX sh.
Tue Jul 4 13:16:02 2000 Yukihiro Matsumoto <matz@netlab.co.jp>
* util.c (rb_type): should add T_UNDEF.

View File

@ -673,7 +673,7 @@ if $extlist.size > 0
if RUBY_PLATFORM =~ /m68k-human|beos/
$extlibs.gsub!("-L/usr/local/lib", "") if $extlibs
end
system format(%[#{$make} #{ruby} EXTOBJS="%s" EXTLIBS="%s"], $extobjs, $extlibs)
system format(%[#{$make} #{ruby} EXTOBJS='%s' EXTLIBS='%s'], $extobjs, $extlibs)
else
Dir.chdir ".."
if older(ruby, miniruby)