package/swig: swig-wrapper.in: handle symlinks

Fixes https://autobuild.buildroot.net/results/e656684298b0462f8044667e7384c64d6508f22f/

Use realpath when constructing the path to the real swig so the wrapper
works even if it is called through a symlink (E.G. the swig<version>
symlinks).

Reported-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Peter Korsgaard
2026-02-07 18:07:53 +01:00
parent fbebf670c4
commit 2b3b25a7dc

View File

@@ -5,4 +5,4 @@ if [ -z "${SWIG_LIB}" ]; then
export SWIG_LIB="${0%/*}/../share/swig/@SWIG_VERSION@"
fi
exec "${0}.br_real" "$@"
exec "$(realpath "${0}").br_real" "$@"