summaryrefslogtreecommitdiffhomepage
path: root/tasks/ruby_ext.rake
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2013-04-05 08:35:33 -0700
committerYukihiro "Matz" Matsumoto <[email protected]>2013-04-05 08:35:33 -0700
commit93819c0186266224a4292bed123823f571b3df37 (patch)
tree7c3d47cab843eb77655d538311ec620f3b57f973 /tasks/ruby_ext.rake
parentaf4eb8f9c234f0308846f6c98c127ebce8600117 (diff)
parentf6dabc1aa02ce792433d8b7f162c02a120b90d01 (diff)
downloadmruby-93819c0186266224a4292bed123823f571b3df37.tar.gz
mruby-93819c0186266224a4292bed123823f571b3df37.zip
Merge pull request #1139 from masuidrive/build
Improve recent CRuby rake compatibility
Diffstat (limited to 'tasks/ruby_ext.rake')
-rw-r--r--tasks/ruby_ext.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/ruby_ext.rake b/tasks/ruby_ext.rake
index a0fbe7b72..0a0883e02 100644
--- a/tasks/ruby_ext.rake
+++ b/tasks/ruby_ext.rake
@@ -45,7 +45,7 @@ end
$pp_show = true
if $verbose.nil?
- unless Rake.verbose.nil?
+ if Rake.respond_to?(:verbose) && !Rake.verbose.nil?
if Rake.verbose.class == TrueClass
# verbose message logging
$pp_show = false