summaryrefslogtreecommitdiffstats
path: root/ext/extmk.rb
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-04 13:42:00 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-04 13:42:00 +0000
commitd4b5b5fe4f718ee5bf78ba48adfca12d75069da1 (patch)
treeb7023daf3123ff37d9095bd0f19931c5bc58de56 /ext/extmk.rb
parentaa3c168b9f3da0cfaa8f4232dd0c438369a5bb97 (diff)
downloadruby-d4b5b5fe4f718ee5bf78ba48adfca12d75069da1.tar.gz
ruby-d4b5b5fe4f718ee5bf78ba48adfca12d75069da1.tar.xz
ruby-d4b5b5fe4f718ee5bf78ba48adfca12d75069da1.zip
* dln.c: Ruby no longer supports MacOS 9 or before.
* eval.c: ditto. * eval_intern.h: ditto. * ext/extmk.rb: ditto. * ext/tk/sample/tkextlib/treectrl/demo.rb: ditto. * ext/tk/stubs.c: ditto. * file.c: ditto. * hash.c: ditto. * include/ruby/defines.h: ditto. * ruby.c: ditto. * signal.c: ditto. * vm_core.h: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19680 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 a461b1d25..ac497bbf2 100644
--- a/ext/extmk.rb
+++ b/ext/extmk.rb
@@ -39,7 +39,7 @@ load File.expand_path("lib/mkmf.rb", srcdir)
require 'optparse/shellwords'
def sysquote(x)
- @quote ||= /os2|macos/ =~ (CROSS_COMPILING || RUBY_PLATFORM)
+ @quote ||= /os2/ =~ (CROSS_COMPILING || RUBY_PLATFORM)
@quote ? x.quote : x
end