summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2022-10-12 20:17:46 +0900
committerGitHub <noreply@github.com>2022-10-12 20:17:46 +0900
commitde2b98c7b738af7d277c302e6f64b5dd0f9fad9e (patch)
treeb4a219fb25ef871146c2bf522097d000d653b739 /ext
parent0b89eda3985d50bfd54b3876715c0ef02ab740d1 (diff)
downloadpsych-de2b98c7b738af7d277c302e6f64b5dd0f9fad9e.tar.gz
Fix missing `abort` call
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 afae086..41daf8c 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|