Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta <antenore.gatta@kyndryl.com>2021-10-29 15:41:01 +0300
committerAntenore Gatta <antenore.gatta@kyndryl.com>2021-10-29 15:41:01 +0300
commit8ba443991ce1da4ef886b54838140afc1ba7e9a4 (patch)
tree1b2bb6ad701543ba23e6c5e049e30745e37600fb /flatpak
parentc398fead2734ad6235658ea805df0bfc82a5dea9 (diff)
Adding flatpak patch-a
Diffstat (limited to 'flatpak')
-rw-r--r--flatpak/patches/spice-common-meson-fix.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/flatpak/patches/spice-common-meson-fix.patch b/flatpak/patches/spice-common-meson-fix.patch
new file mode 100644
index 000000000..77e7ef1d9
--- /dev/null
+++ b/flatpak/patches/spice-common-meson-fix.patch
@@ -0,0 +1,11 @@
+--- spice-gtk-0.39/subprojects/spice-common/meson.build.ori 2021-10-28 14:58:33.813261077 +0200
++++ spice-gtk-0.39/subprojects/spice-common/meson.build 2021-10-28 14:59:13.585430093 +0200
+@@ -132,7 +132,7 @@ if spice_common_generate_client_code or
+ if get_option('python-checks')
+ foreach module : ['six', 'pyparsing']
+ message('Checking for python module @0@'.format(module))
+- cmd = run_command(python, '-m', module)
++ cmd = run_command(python, '-c', 'import @0@'.format(module))
+ if cmd.returncode() != 0
+ error('Python module @0@ not found'.format(module))
+ endif