blob: 120d0c6416036d6ba83004c6facedc69c31f2967 (
plain)
1
2
3
4
5
6
|
#!/bin/sh
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
|