Skip to content

Commit

Permalink
Fix missing abort call
Browse files Browse the repository at this point in the history
Co-authored-by: Olle Jonsson <[email protected]>
  • Loading branch information
nobu and olleolleolle authored Oct 12, 2022
1 parent 0b89eda commit de2b98c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/psych/extconf.rb
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
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|
Expand Down

0 comments on commit de2b98c

Please sign in to comment.