blob: 4021bf7a6fe5a994c07b6134f1b24889b6d909fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#!/bin/sh
# This is a replacement for pkg-config that compares the string passed
# to the --exists argument with the PKG_CONFIG_PATH environment variable
# and returns 1 if they are different.
# variables to get around `--static --version` printing the received
# message and then version
static=false
print_errors=false
while [ $# -gt 0 ]; do
case $1 in
--version)
echo "0.0-cmake-dummy"
exit 0
;;
--exists)
shift
eval last=\${$#}
echo "Expected: ${last}"
echo "Found: ${PKG_CONFIG_PATH}"
[ "${last}" = "${PKG_CONFIG_PATH}" ] && exit 0 || exit 1
;;
--static)
static=true
;;
--print-errors)
print_errors=true
;;
esac
shift
done
$static && echo "Received --static"
$print_errors && echo "Received --print-errors"
if $static || $print_errors; then
exit 0
fi
exit 255
|