X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/177296dffd8bf7d9ce5870b135c412958aab3756..7c0a660e184ded5b79e5294376c12c46698d42a8:/abicheck/run_abi_test diff --git a/abicheck/run_abi_test b/abicheck/run_abi_test index 8f2d7d203..491616b30 100755 --- a/abicheck/run_abi_test +++ b/abicheck/run_abi_test @@ -1,16 +1,19 @@ #!/bin/sh +# ensure we are in the abibreak subdirectory +cd "$(readlink -f $(dirname $0))" + if [ ! -d ../build ]; then echo "../build missing, did you run make?" exit 1 fi -if [ ! -x "$(which abi-compliance-checker 2>/dev/null )" ]; then +if ! command -v abi-compliance-checker 2>/dev/null >&2; then echo "Please install the 'abi-compliance-checker' package" exit 1 fi -LIBPATH=$(find /usr/lib/ -type f -name "libapt-*.so.*" -printf %p\\\\n) +LIBPATH=$(find /usr/lib/$(dpkg-architecture -qDEB_HOST_MULTIARCH) -type f -regex '.*/libapt-\(pkg\|inst\)\.so\..*' -printf %p\\\\n) sed s#@installed_libapt@#$LIBPATH# apt_installed.xml.in > apt_installed.xml BUILDPATH=$(readlink -f ../build)