summaryrefslogtreecommitdiff
path: root/abicheck
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2016-08-06 22:48:08 +0200
committerJulian Andres Klode <jak@debian.org>2016-08-06 22:48:47 +0200
commit7c0a660e184ded5b79e5294376c12c46698d42a8 (patch)
treedd159d3a06ef496356326860f88f406d9f020543 /abicheck
parente825742bbbbe99b99d525a3b34832b25a7396c84 (diff)
CMake: Adjust abicheck locations
Look in build/apt-pkg and build/apt-inst instead of build/bin. Gbp-Dch: ignore
Diffstat (limited to 'abicheck')
-rw-r--r--abicheck/apt_build.xml.in3
-rwxr-xr-xabicheck/run_abi_test2
2 files changed, 3 insertions, 2 deletions
diff --git a/abicheck/apt_build.xml.in b/abicheck/apt_build.xml.in
index f7d4c90cf..32886d931 100644
--- a/abicheck/apt_build.xml.in
+++ b/abicheck/apt_build.xml.in
@@ -7,5 +7,6 @@
</headers>
<libs>
- @build_path@/bin/
+ @build_path@/apt-pkg/
+ @build_path@/apt-inst/
</libs>
diff --git a/abicheck/run_abi_test b/abicheck/run_abi_test
index 6e6152a63..491616b30 100755
--- a/abicheck/run_abi_test
+++ b/abicheck/run_abi_test
@@ -8,7 +8,7 @@ if [ ! -d ../build ]; then
exit 1
fi
-if command -v abi-compliance-checker 2>/dev/null >&2; then
+if ! command -v abi-compliance-checker 2>/dev/null >&2; then
echo "Please install the 'abi-compliance-checker' package"
exit 1
fi