build: Drop a no-longer-needed Meson backwards compatibility check

See the previous commit.

Signed-off-by: Philip Withnall <philip@tecnocode.co.uk>
This commit is contained in:
Philip Withnall 2023-10-24 16:48:23 +01:00
parent 24a3e728ce
commit 8831f65a4d

View File

@ -1086,20 +1086,11 @@ endif
if multiarch_bindir != get_option('bindir')
foreach exe : ['gio-querymodules', 'glib-compile-schemas']
if meson.version().version_compare('>=0.61.0')
install_symlink(
exe,
install_dir : get_option('bindir'),
pointing_to : get_option('prefix') / multiarch_bindir / exe,
)
else
warning(
'Please use Meson >= 0.61.0 or create a symlink @1@ -> @2@ in packaging'.format(
get_option('prefix') / get_option('bindir') / exe,
get_option('prefix') / multiarch_bindir / exe,
)
)
endif
install_symlink(
exe,
install_dir : get_option('bindir'),
pointing_to : get_option('prefix') / multiarch_bindir / exe,
)
endforeach
endif