mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
[ruby/psych] Fix missing abort
call
https://github.com/ruby/psych/commit/de2b98c7b7 Co-authored-by: Olle Jonsson <olle.jonsson@gmail.com>
This commit is contained in:
parent
ed01bacf27
commit
66a650ec41
1 changed files with 1 additions and 1 deletions
|
@ -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|
|
||||
|
|
Loading…
Reference in a new issue