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).
This commit is contained in:
Jehan 2019-12-25 11:51:56 +01:00
parent 9399c937df
commit 4fa7d078d0

View file

@ -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