blob: 8d4788ae79d91c3e9f761f3280c9da94c97136f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
if [ ! -d ../build ]; then
echo "../build missing, did you run make?"
exit 1
fi
LIBPATH=$(find /usr/lib/ -type f -name "libapt-pkg*")
sed s#@installed_libapt@#$LIBPATH# apt_installed.xml.in > apt_installed.xml
perl abi-compliance-checker.pl -l apt -d1 apt_installed.xml -d2 apt_build.xml
|