summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenoit Daloze <eregontp@gmail.com>2023-08-22 16:14:21 +0200
committergit <svn-admin@ruby-lang.org>2023-08-22 21:19:09 +0000
commit2d75069779fd1e9fe94b2e4da5e269641daddf0f (patch)
tree4b28064bd93809a525899debbea7c14f7ef1de79
parent837c12b0c8711e593bfe0235f4fec2e8cf10bd75 (diff)
[ruby/yarp] Use require_relative for yarp/ffi
https://github.com/ruby/yarp/commit/c0598f8805
-rw-r--r--lib/yarp.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/yarp.rb b/lib/yarp.rb
index 97b8bd9ade..15217e80f4 100644
--- a/lib/yarp.rb
+++ b/lib/yarp.rb
@@ -515,5 +515,5 @@ require_relative "yarp/pack"
if RUBY_ENGINE == "ruby" and !ENV["YARP_FFI_BACKEND"]
require "yarp/yarp"
else
- require "yarp/ffi"
+ require_relative "yarp/ffi"
end