From 4fa7d078d0705f1508d1c0ee9a2d852db920ef2c Mon Sep 17 00:00:00 2001 From: Jehan Date: Wed, 25 Dec 2019 11:51:56 +0100 Subject: [PATCH] plug-ins: install Python plug-ins in rwxr-xr-x. Without the write permission for the owner, the `make install-plug-ins` special target fails on Python plug-ins. And anyway I don't see a reason why not give write permission to the owner (like all other plug-ins are installed). --- plug-ins/python/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plug-ins/python/meson.build b/plug-ins/python/meson.build index 80809cd56a..95532ed17e 100644 --- a/plug-ins/python/meson.build +++ b/plug-ins/python/meson.build @@ -32,7 +32,7 @@ foreach plugin : plugins srcs = plugin.get('srcs', name + '.py') install_data(srcs, install_dir: gimpplugindir / 'plug-ins' / name, - install_mode: 'r-xr-xr-x') + install_mode: 'rwxr-xr-x') endforeach