mirror of https://github.com/GNOME/gimp.git
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:
parent
75121fdbc8
commit
76728fee01
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue