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