diff options
author | Mathieu Duponchelle <mathieu@centricular.com> | 2018-04-09 02:15:45 +0200 |
---|---|---|
committer | Mathieu Duponchelle <mathieu@centricular.com> | 2018-04-09 15:43:25 +0200 |
commit | 33abe0cf5576a094c565560e3e34a6457c14ad5e (patch) | |
tree | ee850cc9cf29355f21ee3517218cac4adfae5d21 /test cases/python | |
parent | dce770c0a78ae1a99a53d62faae5b52dbbd5cd03 (diff) | |
download | meson-33abe0cf5576a094c565560e3e34a6457c14ad5e.zip meson-33abe0cf5576a094c565560e3e34a6457c14ad5e.tar.gz meson-33abe0cf5576a094c565560e3e34a6457c14ad5e.tar.bz2 |
[fixup]: Rename find to find_installation
Diffstat (limited to 'test cases/python')
-rw-r--r-- | test cases/python/1 extmodule/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/python/1 extmodule/meson.build b/test cases/python/1 extmodule/meson.build index 0e24a70..4798654 100644 --- a/test cases/python/1 extmodule/meson.build +++ b/test cases/python/1 extmodule/meson.build @@ -3,7 +3,7 @@ project('Python extension module', 'c', py_mod = import('python') -py = py_mod.find(get_option('python'), required : false) +py = py_mod.find_installation(get_option('python'), required : false) if py.found() py_dep = py.dependency() |