Fix 'gimp-script-fu-interpreter' version

It supposed to use api version instead of app version. And seems like the symlink is excessive, it can't be run by user anyway.
This commit is contained in:
Hanabishi 2022-09-05 05:33:32 +05:00
parent 75121fdbc8
commit 76728fee01
1 changed files with 1 additions and 8 deletions

View File

@ -1,7 +1,7 @@
scriptfuInclude = include_directories('..')
executable_name = 'gimp-script-fu-interpreter' + exec_ver
executable_name = 'gimp-script-fu-interpreter-' + gimp_api_version
plugin_sources = [
'script-fu-interpreter.c',
@ -40,10 +40,3 @@ script_fu_interpreter = executable(executable_name,
link_with : libscriptfu,
install: true,
)
if enable_default_bin and meson.version().version_compare('>=0.61.0')
install_symlink(fs.name(script_fu_interpreter.full_path()).replace(exec_ver, ''),
pointing_to: fs.name(script_fu_interpreter.full_path()),
install_dir: get_option('bindir')
)
endif