From: Emil Velikov Date: Thu, 29 Jan 2026 11:18:53 +0000 (+0000) Subject: meson: use identical ln arguments internally X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=518d9a5dba738a173802a41b2b3f1f848f4135c0;p=thirdparty%2Fkmod.git meson: use identical ln arguments internally Update the internal symlinks to also use -r/--relative, just like the installed ones. Signed-off-by: Emil Velikov Reviewed-by: Lucas De Marchi Link: https://github.com/kmod-project/kmod/pull/pull/400 Signed-off-by: Lucas De Marchi --- diff --git a/meson.build b/meson.build index 6fb3eeeb..f5dc4e59 100644 --- a/meson.build +++ b/meson.build @@ -495,7 +495,7 @@ if get_option('tools') internal_kmod_symlinks += custom_target( tool, - command : ['ln', '-sf', kmod, '@OUTPUT@'], + command : ['ln', '-sfr', kmod, '@OUTPUT@'], output : tool, depends : kmod, build_by_default : true,