diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2012-11-29 20:54:42 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-12-06 12:31:08 +0000 |
commit | 4d4915a3837a28775e95d739a925df74b197ee33 (patch) | |
tree | 104da29ecf5654041d63fb681bc2bce07b36dcd5 /meta/recipes-devtools/pkgconfig/pkgconfig.inc | |
parent | ca36d34c2e6be96cab9b2a46a3c920832ae8d246 (diff) | |
download | poky-4d4915a3837a28775e95d739a925df74b197ee33.tar.gz |
pkgconfig: Add a manual dependency of pkgconfig(pkg-config)
The libtelepathy-glib-dev package contains a .pc file that has a requires
of pkgconfig(pkg-config) > 0.21 in it. In order to satisfy this requirement
we add a manual RPROVIDE to the pkgconfig package.
(From OE-Core rev: f9ddae16ef31b2c1cd988e1b416a39d516c986c4)
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/pkgconfig/pkgconfig.inc')
-rw-r--r-- | meta/recipes-devtools/pkgconfig/pkgconfig.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-devtools/pkgconfig/pkgconfig.inc b/meta/recipes-devtools/pkgconfig/pkgconfig.inc index 83a9cdf80a..27d407170c 100644 --- a/meta/recipes-devtools/pkgconfig/pkgconfig.inc +++ b/meta/recipes-devtools/pkgconfig/pkgconfig.inc | |||
@@ -37,3 +37,8 @@ BBCLASSEXTEND = "native nativesdk" | |||
37 | # files. | 37 | # files. |
38 | FILES_${PN}-dev = "" | 38 | FILES_${PN}-dev = "" |
39 | FILES_${PN} += "${datadir}/aclocal/pkg.m4" | 39 | FILES_${PN} += "${datadir}/aclocal/pkg.m4" |
40 | |||
41 | # When using the RPM generated automatic package dependencies, some packages | ||
42 | # will end up requiring 'pkgconfig(pkg-config)'. Allow this behavior by | ||
43 | # specifying an appropriate provide. | ||
44 | RPROVIDES_${PN} += "pkgconfig(pkg-config) (= ${PV})" | ||