From ca57fd4d8b854d97bd70efcf1018e34bc2ad4981 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 12 Aug 2013 17:11:41 +0200 Subject: use the 'abi-complicance-checker package instead of using the buildin copy for the abi checks --- abicheck/run_abi_test | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'abicheck/run_abi_test') 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 -- cgit v1.2.3 From 183116d1a64a2610b88fa6b50f2c5199b69d5841 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 12 Aug 2013 23:33:57 +0200 Subject: fix typo in the test for abi-compliance-checker --- abicheck/run_abi_test | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'abicheck/run_abi_test') diff --git a/abicheck/run_abi_test b/abicheck/run_abi_test index 668ce8e12..9ee840ea0 100755 --- a/abicheck/run_abi_test +++ b/abicheck/run_abi_test @@ -5,8 +5,8 @@ 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" +if [ ! -x "$(which abi-compliance-checker 2>/dev/null )" ]; then + echo "Please install the 'abi-compliance-checker' package" exit 1 fi -- cgit v1.2.3