blob: 7c021dbce1e0952a8eeeaace274298bab256fd5f (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh -e
BIN=`dirname $0`
ROOT=`dirname "$BIN"`
export PKG_CONFIG_DIR=
export PKG_CONFIG_LIBDIR="${ROOT}/lib/pkgconfig:${ROOT}/share/pkgconfig"
exec /usr/bin/pkg-config "$@"
|