X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/ca57fd4d8b854d97bd70efcf1018e34bc2ad4981..374f8492e6f109e8427816a8f513e5e8feda9049:/abicheck/run_abi_test diff --git a/abicheck/run_abi_test b/abicheck/run_abi_test index 668ce8e12..18c13dfcb 100755 --- a/abicheck/run_abi_test +++ b/abicheck/run_abi_test @@ -1,19 +1,22 @@ #!/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-complicance-checker > /dev/null 2>&1) ]; then - echo "Please install the 'abi-complicance-checker' package" +if [ ! -x "$(which abi-compliance-checker 2>/dev/null )" ]; 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) sed s#@build_path@#$BUILDPATH# apt_build.xml.in > apt_build.xml -abi-compliance-checker -l apt -d1 apt_installed.xml -d2 apt_build.xml +abi-compliance-checker -l apt -d1 apt_installed.xml -d2 apt_build.xml $@