blob: ce9b70b80c5075579b3a665987237fdfbdd2c496 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
export PKG_CONFIG_LIBDIR=/usr/psp/lib/pkgconfig
export PKG_CONFIG_PATH=$PKG_CONFIG_LIBDIR:$PKG_CONFIG_PATH_CUSTOM
# Now just execute pkg-config with the given command line args.
pkg-config $@
|