From 66a650ec41a583ec58003737b23b42ec8f069920 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Wed, 12 Oct 2022 20:17:46 +0900 Subject: [PATCH] [ruby/psych] Fix missing `abort` call https://github.com/ruby/psych/commit/de2b98c7b7 Co-authored-by: Olle Jonsson --- ext/psych/extconf.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/psych/extconf.rb b/ext/psych/extconf.rb index afae08603d..41daf8c238 100644 --- a/ext/psych/extconf.rb +++ b/ext/psych/extconf.rb @@ -40,7 +40,7 @@ else # default to pre-installed libyaml pkg_config('yaml-0.1') dir_config('libyaml') find_header('yaml.h') or abort "yaml.h not found" - find_library('yaml', 'yaml_get_version') or "libyaml not found" + find_library('yaml', 'yaml_get_version') or abort "libyaml not found" end create_makefile 'psych' do |mk|