mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 16:01:54 -09:00
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>
9 lines
178 B
Bash
9 lines
178 B
Bash
#!/bin/sh
|
|
# wrapper to make swig relocatable
|
|
|
|
if [ -z "${SWIG_LIB}" ]; then
|
|
export SWIG_LIB="${0%/*}/../share/swig/@SWIG_VERSION@"
|
|
fi
|
|
|
|
exec "$(realpath "${0}").br_real" "$@"
|