mirror of
https://git.yoctoproject.org/poky
synced 2026-02-24 10:29:40 +01:00
pkg-config-native is useful when building a package for the target that needs to compile a build-time tool, to avoid having to hard-code many paths. (From OE-Core rev: b15e22beed948f79b6ae953df7b889f3e70588b9) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
8 lines
126 B
Bash
8 lines
126 B
Bash
#! /bin/sh
|
|
|
|
PKG_CONFIG_PATH="@PATH_NATIVE@"
|
|
PKG_CONFIG_LIBDIR="@LIBDIR_NATIVE@"
|
|
unset PKG_CONFIG_SYSROOT_DIR
|
|
|
|
pkg-config "$@"
|