File: pkg-config

package info (click to toggle)
pacemaker 2.1.5-1%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 61,116 kB
  • sloc: xml: 148,600; ansic: 126,418; python: 6,229; sh: 4,723; makefile: 2,108
file content (10 lines) | stat: -rwxr-xr-x 169 bytes parent folder | download | duplicates (4)
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"