[gimp] plug-ins: install Python plug-ins in rwxr-xr-x.



commit 4fa7d078d0705f1508d1c0ee9a2d852db920ef2c
Author: Jehan <jehan girinstud io>
Date:   Wed Dec 25 11:51:56 2019 +0100

    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
 
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]