pkg-config.sh 380 Bytes
Newer Older
1 2
#!/bin/sh -e

3 4 5 6
# This is a wrapper for pkg-config which helps with cross-compiling;
# it sets up environment variables to pkg-config searches for
# libraries in the sysroot where a copy of this script is located.

7 8 9 10 11 12 13
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 "$@"