diff options
author | Michael Vogt <mvo@debian.org> | 2013-08-12 17:11:41 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2013-08-12 17:11:41 +0200 |
commit | ca57fd4d8b854d97bd70efcf1018e34bc2ad4981 (patch) | |
tree | 039b43f0460c8fa6a14988ec06d83e62c3618f84 /abicheck/run_abi_test | |
parent | e7c82918f3abfb49d794bbe697f8721f25333b77 (diff) |
use the 'abi-complicance-checker package instead of using the buildin copy for the abi checks
Diffstat (limited to 'abicheck/run_abi_test')
-rwxr-xr-x | abicheck/run_abi_test | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/abicheck/run_abi_test b/abicheck/run_abi_test index 4e4bdf298..668ce8e12 100755 --- a/abicheck/run_abi_test +++ b/abicheck/run_abi_test @@ -5,10 +5,15 @@ if [ ! -d ../build ]; then exit 1 fi +if [ ! -x $(which abi-complicance-checker > /dev/null 2>&1) ]; then + echo "Please install the 'abi-complicance-checker' package" + exit 1 +fi + LIBPATH=$(find /usr/lib/ -type f -name "libapt-*.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 -perl abi-compliance-checker.pl -l apt -d1 apt_installed.xml -d2 apt_build.xml +abi-compliance-checker -l apt -d1 apt_installed.xml -d2 apt_build.xml |