summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwael <40663@proton.me>2022-11-04 08:23:43 +0300
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2022-11-07 09:39:49 +0100
commit9f1748e5fe6264e1da11fa334f6b73a7039b66f5 (patch)
tree3fc03fa9dc63a75b1151f25f589c43a30efbca33
parentb8260dd2a97a1775d5b7c23e080d2f0f32ed5fa4 (diff)
downloadsigc++-9f1748e5fe6264e1da11fa334f6b73a7039b66f5.tar.gz
meson: simplify lookup of python command
-rw-r--r--meson.build8
1 files changed, 1 insertions, 7 deletions
diff --git a/meson.build b/meson.build
index ee588f3..2fede19 100644
--- a/meson.build
+++ b/meson.build
@@ -41,13 +41,7 @@ project_build_root = meson.current_build_dir()
cpp_compiler = meson.get_compiler('cpp')
is_msvc = cpp_compiler.get_id() == 'msvc'
-python3 = import('python').find_installation()
-
-python_version = python3.language_version()
-python_version_req = '>= 3.5'
-if not python_version.version_compare(python_version_req)
- error('Requires Python @0@, found @1@.'.format(python_version_req, python_version))
-endif
+python3 = find_program('python3', version: '>=3.5')
# Do we build from a git repository?
# Suppose we do if and only if the meson.build file is tracked by git.