diff options
author | Xavier Claessens <xavier.claessens@collabora.com> | 2020-10-07 10:45:33 -0400 |
---|---|---|
committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2020-10-07 19:08:17 +0200 |
commit | 9295aedb8db2ba94ce01f874dad67185001fe035 (patch) | |
tree | 7fe8bca14c771cc9dfedf2ca5862778589850e2c | |
parent | 1a0603835e3c9f1047d9b7694efc996219a422e4 (diff) | |
download | meson-9295aedb8db2ba94ce01f874dad67185001fe035.zip meson-9295aedb8db2ba94ce01f874dad67185001fe035.tar.gz meson-9295aedb8db2ba94ce01f874dad67185001fe035.tar.bz2 |
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.
-rw-r--r-- | test cases/unit/39 python extmodule/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/unit/39 python extmodule/meson.build b/test cases/unit/39 python extmodule/meson.build index eb00a6a..5b44394 100644 --- a/test cases/unit/39 python extmodule/meson.build +++ b/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') |