From e54467a8fa5cbb3b012915fa0f771e611e354aff Mon Sep 17 00:00:00 2001 From: Jehan Date: Tue, 26 Nov 2019 20:24:28 +0100 Subject: [PATCH] plug-ins: (meson) install Python plug-ins with execution permission. Otherwise GIMP will skip them! --- plug-ins/python/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plug-ins/python/meson.build b/plug-ins/python/meson.build index 56790e6f6f..d3d391df36 100644 --- a/plug-ins/python/meson.build +++ b/plug-ins/python/meson.build @@ -31,7 +31,8 @@ foreach plugin : plugins name = plugin.get('name') srcs = plugin.get('srcs', name + '.py') - install_data(srcs, install_dir: gimpplugindir / 'plug-ins' / name) + install_data(srcs, install_dir: gimpplugindir / 'plug-ins' / name, + install_mode: 'r-xr-xr-x') endforeach