aboutsummaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2022-10-12 20:17:46 +0900
committergit <svn-admin@ruby-lang.org>2022-10-12 20:24:38 +0900
commit66a650ec41a583ec58003737b23b42ec8f069920 (patch)
treeb1efd3be5c961c9e14f9f603e368750f0a3ae63f /ext
parented01bacf2778a5e3bd813ded5f01d7ccc85b289d (diff)
downloadruby-66a650ec41a583ec58003737b23b42ec8f069920.tar.gz
[ruby/psych] Fix missing `abort` call
https://github.com/ruby/psych/commit/de2b98c7b7 Co-authored-by: Olle Jonsson <olle.jonsson@gmail.com>
Diffstat (limited to 'ext')
-rw-r--r--ext/psych/extconf.rb2
1 files changed, 1 insertions, 1 deletions
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|