ruby-changes:71018
From: Koichi <ko1@a...>
Date: Wed, 26 Jan 2022 10:06:09 +0900 (JST)
Subject: [ruby-changes:71018] cc8064ba2e (master): Do not need to print to stderr
https://git.ruby-lang.org/ruby.git/commit/?id=cc8064ba2e From cc8064ba2e046f384f446889c8525bf976733918 Mon Sep 17 00:00:00 2001 From: Koichi Sasada <ko1@a...> Date: Wed, 26 Jan 2022 10:05:10 +0900 Subject: Do not need to print to stderr --- ext/fiddle/extconf.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/fiddle/extconf.rb b/ext/fiddle/extconf.rb index 053456d534d..93b4f9d4faf 100644 --- a/ext/fiddle/extconf.rb +++ b/ext/fiddle/extconf.rb @@ -167,7 +167,7 @@ if libffi_version https://github.com/ruby/ruby/blob/trunk/ext/fiddle/extconf.rb#L167 libffi_version = libffi_version.gsub(/-rc\d+/, '') libffi_version = (libffi_version.split('.').map(&:to_i) + [0,0])[0,3] $defs.push(%{-DRUBY_LIBFFI_MODVERSION=#{ '%d%03d%03d' % libffi_version }}) - warn "libffi_version: #{libffi_version.join('.')}" + puts "libffi_version: #{libffi_version.join('.')}" end case -- cgit v1.2.1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/