[gnome-tweaks/alatiera/flatpak-manifest: 133/135] build: Use python module instead of deprecated python3 module
- From: Evan Welsh <ewlsh src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-tweaks/alatiera/flatpak-manifest: 133/135] build: Use python module instead of deprecated python3 module
- Date: Sat, 24 Oct 2020 04:24:00 +0000 (UTC)
commit 505c870aab7b77395933cbeafdbb94de78be17be
Author: Christopher Davis <brainblasted disroot org>
Date: Tue Feb 26 13:43:27 2019 -0500
build: Use python module instead of deprecated python3 module
meson has a different python module that can handle both
python2 and python3. Use of the python3 module is deprecated.
This commit has us use the new module's rules.
meson.build | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
---
diff --git a/meson.build b/meson.build
index b7da5186..320c14e7 100644
--- a/meson.build
+++ b/meson.build
@@ -1,11 +1,12 @@
project('gnome-tweaks',
version: '3.34.0',
- meson_version: '>= 0.40.0'
+ meson_version: '>= 0.46.0'
)
gnome = import('gnome')
i18n = import('i18n')
-python3 = import('python3')
+python = import('python')
+py_installation = python.find_installation('python3')
prefix = get_option('prefix')
@@ -13,7 +14,7 @@ bindir = join_paths(prefix, get_option('bindir'))
datadir = join_paths(prefix, get_option('datadir'))
libexecdir = join_paths(prefix, get_option('libexecdir'))
localedir = join_paths(prefix, get_option('localedir'))
-pythondir = join_paths(prefix, python3.sysconfig_path('purelib'))
+pythondir = join_paths(prefix, py_installation.get_path('purelib'))
pkgdatadir = join_paths(datadir, meson.project_name())
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]