blob: 68046cedac6a5e5befd0597b73f7ac0c16f4189d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
Ignore linker warnings when compiling native extensions.
Index: lib/mkmf.rb
--- lib/mkmf.rb.orig
+++ lib/mkmf.rb
@@ -415,7 +415,7 @@ MESSAGE
result = nil
Logging.postpone do |log|
output = IO.popen(env, command, &:read)
- result = ($?.success? and File.zero?(log.path))
+ result = $?.success?
output
end
result
|