summaryrefslogtreecommitdiff
path: root/abicheck
diff options
context:
space:
mode:
authorDavid Kalnischkies <david@kalnischkies.de>2014-03-23 14:09:12 +0100
committerDavid Kalnischkies <david@kalnischkies.de>2014-04-11 08:58:36 +0200
commite6d282e450191b1f03b0aed73f7d97115e094e90 (patch)
treec3337875c1464d608ce1901eb666c0401a6756b5 /abicheck
parent53c3a8fa16351f35b7b7d359c81dfbe36ab04444 (diff)
be able to run abicheck from any directory
Git-Dch: Ignore
Diffstat (limited to 'abicheck')
-rwxr-xr-xabicheck/run_abi_test5
1 files changed, 4 insertions, 1 deletions
diff --git a/abicheck/run_abi_test b/abicheck/run_abi_test
index 8f2d7d203..18c13dfcb 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)