diff options
author | Ross Burton <ross.burton@intel.com> | 2017-01-31 20:24:32 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-02 17:37:33 +0000 |
commit | 2e55ecb93ecbbd8bfe626c07d3a032c2fe98efca (patch) | |
tree | 514daced00b20e74aa6e11b728cad0912a5c7f97 /meta/recipes-devtools | |
parent | c2eb2a2a990e402c532cccfe742ca33d3e8c46f3 (diff) | |
download | openembedded-core-2e55ecb93ecbbd8bfe626c07d3a032c2fe98efca.tar.gz openembedded-core-2e55ecb93ecbbd8bfe626c07d3a032c2fe98efca.tar.bz2 openembedded-core-2e55ecb93ecbbd8bfe626c07d3a032c2fe98efca.zip |
pkg-config: depend on pkgconfig-native for target builds
When building for the target, pkg-config uses the target glib-2.0 instead of
it's own minimal fork. To find this it needs to use pkg-config so ensure this
dependency exists in case it doesn't exist on the host already.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/pkgconfig/pkgconfig_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb b/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb index ff8254cfcd..66b02f175d 100644 --- a/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb +++ b/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb @@ -8,7 +8,7 @@ SECTION = "console/utils" LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" -DEPENDS = "glib-2.0" +DEPENDS = "glib-2.0 pkgconfig-native" DEPENDS_class-native = "" DEPENDS_class-nativesdk = "" |