summaryrefslogtreecommitdiff
path: root/lib/mkmf.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-12 05:52:19 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-12 05:52:19 +0000
commitef7770c87b61ada97f911c563a89dbdba4985fe1 (patch)
tree1ccc77908b84db2bd6e6442251088fc219597731 /lib/mkmf.rb
parentad94c1386b5526284064c745e3e09c9a06b3b87c (diff)
* lib/mkmf.rb (Logging.quiet, Logging.message): added quiet flag and
use it. [ruby-core:10909] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@12524 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/mkmf.rb')
-rw-r--r--lib/mkmf.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/mkmf.rb b/lib/mkmf.rb
index c808f10e32..338b7c5242 100644
--- a/lib/mkmf.rb
+++ b/lib/mkmf.rb
@@ -171,6 +171,7 @@ module Logging
@orgerr = $stderr.dup
@orgout = $stdout.dup
@postpone = 0
+ @quiet = $extmk
def self::open
@log ||= File::open(@logfile, 'w')
@@ -214,6 +215,10 @@ module Logging
end
end
end
+
+ class << self
+ attr_accessor :quiet
+ end
end
def xsystem command
@@ -533,7 +538,7 @@ def append_library(libs, lib)
end
def message(*s)
- unless $extmk and not $VERBOSE
+ unless Logging.quiet and not $VERBOSE
printf(*s)
$stdout.flush
end