diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2019-04-02 15:32:23 -0700 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2019-04-03 14:48:29 -0700 |
| commit | 82346a2bd241fcf34e66f34ac653b580e8f395ef (patch) | |
| tree | 947b907a5e63bed8f723e557695035ef9aafeef1 /test cases | |
| parent | 3d04e5a150ea2a40cc9d531241fb6dbed21e8c7f (diff) | |
| download | meson-82346a2bd241fcf34e66f34ac653b580e8f395ef.tar.gz | |
modules/python: Report program found in find_installation()
Currently find_installation is silent, which is pretty annoying. Let's
log it.
Diffstat (limited to 'test cases')
| -rw-r--r-- | test cases/python/1 basic/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/python/1 basic/meson.build b/test cases/python/1 basic/meson.build index f9a743379..9c3af10c6 100644 --- a/test cases/python/1 basic/meson.build +++ b/test cases/python/1 basic/meson.build @@ -1,7 +1,7 @@ project('python sample', 'c') py_mod = import('python') -py = py_mod.find_installation() +py = py_mod.find_installation('python3') py_version = py.language_version() if py_version.version_compare('< 3.2') |
