plug-ins: (meson) install Python plug-ins with execution permission.

Otherwise GIMP will skip them!
This commit is contained in:
Jehan 2019-11-26 20:24:28 +01:00
parent b0ae5f1351
commit e54467a8fa
1 changed files with 2 additions and 1 deletions

View File

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