summaryrefslogtreecommitdiff
path: root/ext/tk/extconf.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-22 06:14:21 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-22 06:14:21 +0000
commitff4cec3c098db9a2d93df4d38153f1cf58790944 (patch)
tree80d7ee6da2c4f64927a50fee4361279079ec4f58 /ext/tk/extconf.rb
parent1fbe0943cc9b54050d9dbdac01d8bef9b2f48202 (diff)
tk: suppress progress indicators
* ext/tk/extconf.rb: hack to disable progress indicators with parallel build, not to interleave other messages. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54682 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tk/extconf.rb')
-rw-r--r--ext/tk/extconf.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/tk/extconf.rb b/ext/tk/extconf.rb
index 7c35e63626..d269957aec 100644
--- a/ext/tk/extconf.rb
+++ b/ext/tk/extconf.rb
@@ -127,7 +127,7 @@ def maybe_64bit?
/64|universal|s390x/ =~ RUBY_PLATFORM
end
-if defined?(Logging.quiet) and Logging.quiet
+if defined?(Logging.quiet) and Logging.quiet and /--jobserver-fds=/ !~ ENV["MAKEFLAGS"]
def progress(s)
print(s)
end