summarylogtreecommitdiffstats
path: root/android-pkgconfig.sh
blob: 5359b4cf43b9c8f0cfa930c0bd5cd6874bee8ee3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

# This file has no copyright assigned and is placed in the Public Domain.
# No warranty is given.

export PKG_CONFIG_LIBDIR=/opt/android-libs/@TRIPLE@/lib/pkgconfig:/opt/android-libs/@TRIPLE@/share/pkgconfig

# You can use PKG_CONFIG_PATH_CUSTOM to tweak pkg-config behavior further
export PKG_CONFIG_PATH=${PKG_CONFIG_PATH_CUSTOM}:${PKG_CONFIG_LIBDIR}

# Now just execute pkg-config with the given command line args.
pkg-config $@