ruby-changes:66254
From: Jeremy <ko1@a...>
Date: Tue, 18 May 2021 12:49:05 +0900 (JST)
Subject: [ruby-changes:66254] 2579593a56 (master): [ruby/fiddle] Do not use a libdir for glibc, it breaks Linux PPC64 (#70)
https://git.ruby-lang.org/ruby.git/commit/?id=2579593a56 From 2579593a56fd96d9085daa7f11dfc2dd231cb70f Mon Sep 17 00:00:00 2001 From: Jeremy Evans <code@j...> Date: Wed, 10 Mar 2021 13:48:00 -0800 Subject: [ruby/fiddle] Do not use a libdir for glibc, it breaks Linux PPC64 (#70) Fixes [Bug #12666] https://github.com/ruby/fiddle/commit/a267a40be7 --- test/fiddle/helper.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/fiddle/helper.rb b/test/fiddle/helper.rb index f38f903..a6e2019 100644 --- a/test/fiddle/helper.rb +++ b/test/fiddle/helper.rb @@ -47,8 +47,8 @@ when /linux/ https://github.com/ruby/ruby/blob/trunk/test/fiddle/helper.rb#L47 libm_so = libc_so else # glibc - libc_so = File.join(libdir, "libc.so.6") - libm_so = File.join(libdir, "libm.so.6") + libc_so = "libc.so.6" + libm_so = "libm.so.6" end when /mingw/, /mswin/ require "rbconfig" -- cgit v1.1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/