Tests: py.dependency() now has required:true by default

It used to ignore the required argument and got fixed to be consistent
with dependency() function.
pull/7760/head
Xavier Claessens 4 years ago committed by Daniel Mensinger
parent 1a0603835e
commit 9295aedb8d
  1. 2
      test cases/unit/39 python extmodule/meson.build

@ -6,7 +6,7 @@ py_mod = import('python')
py = py_mod.find_installation(get_option('python'), required : false)
if py.found()
py_dep = py.dependency()
py_dep = py.dependency(required : false)
if py_dep.found()
subdir('ext')

Loading…
Cancel
Save