From: David Kalnischkies Date: Sun, 23 Mar 2014 13:09:12 +0000 (+0100) Subject: be able to run abicheck from any directory X-Git-Tag: 1.0.2~14 X-Git-Url: http://git.hcoop.net/ntk/apt.git/commitdiff_plain/e6d282e450191b1f03b0aed73f7d97115e094e90 be able to run abicheck from any directory Git-Dch: Ignore --- diff --git a/.gitignore b/.gitignore index 488682ee..a00c84a0 100644 --- a/.gitignore +++ b/.gitignore @@ -42,3 +42,9 @@ /vendor/current /vendor/*/sources.list /vendor/*/makefile.auto + +# generated for and by abicheck +/abicheck/apt_build.xml +/abicheck/apt_installed.xml +/abicheck/compat_reports/ +/abicheck/logs/ diff --git a/abicheck/run_abi_test b/abicheck/run_abi_test index 8f2d7d20..18c13dfc 100755 --- a/abicheck/run_abi_test +++ b/abicheck/run_abi_test @@ -1,5 +1,8 @@ #!/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 @@ -10,7 +13,7 @@ if [ ! -x "$(which abi-compliance-checker 2>/dev/null )" ]; then 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)