summaryrefslogtreecommitdiffstats
path: root/debian/tests/pkg-config
blob: 771a9e7ece4eb3accd6894e31a3e55b87e8f25b8 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

set -e

status=0
for file in $(dpkg -L pacemaker-dev | grep \\.pc); do
    pkg-config --print-errors "$(basename $file .pc)" || status=1
done

exit "$status"