mirror of
https://git.yoctoproject.org/poky
synced 2026-02-27 20:09:41 +01:00
Export the PKG_CONFIG_PATH and PKG_CONFIG_LIBDIR variables in case the parent shell hasn't done so. (From OE-Core rev: 42f33bb5a480324b81c875fbb28872c734860253) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
8 lines
140 B
Bash
8 lines
140 B
Bash
#! /bin/sh
|
|
|
|
export PKG_CONFIG_PATH="@PATH_NATIVE@"
|
|
export PKG_CONFIG_LIBDIR="@LIBDIR_NATIVE@"
|
|
unset PKG_CONFIG_SYSROOT_DIR
|
|
|
|
pkg-config "$@"
|