diff options
author | Peter Kjellerstedt <pkj@axis.com> | 2017-08-15 16:41:54 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-17 00:21:14 +0100 |
commit | 0db0e1851c8c23cbfbccb9553391fb8da08bf645 (patch) | |
tree | ea160c9f60f544e10ac2c5c954a4a6cc1eb0a861 | |
parent | db0980203bf9ef162c904ee64df1817d44c2f94e (diff) | |
download | poky-0db0e1851c8c23cbfbccb9553391fb8da08bf645.tar.gz |
texinfo: Avoid a problem with a dependency on perl(Locale::gettext_xs)
We do not build the Locale::gettext_xs Perl module and the code will
test for it and happily use Locale::gettext_pp instead if it is not
found. However, this still causes a file dependency on
perl(Locale::gettext_xs) to be generated, which must be satisfied by
adding an explicit provide for it.
(From OE-Core rev: c1e16ac6aea0ec15b35d227814bbf137ac8de6c2)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/texinfo/texinfo_6.3.bb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/recipes-extended/texinfo/texinfo_6.3.bb b/meta/recipes-extended/texinfo/texinfo_6.3.bb index d82731e11e..f58df928aa 100644 --- a/meta/recipes-extended/texinfo/texinfo_6.3.bb +++ b/meta/recipes-extended/texinfo/texinfo_6.3.bb | |||
@@ -79,4 +79,10 @@ FILES_${PN}-doc = "${infodir}/texinfo* \ | |||
79 | ${datadir}/${tex_texinfo} \ | 79 | ${datadir}/${tex_texinfo} \ |
80 | ${mandir}/man1 ${mandir}/man5" | 80 | ${mandir}/man1 ${mandir}/man5" |
81 | 81 | ||
82 | # Lie about providing the Locale::gettext_xs module. It is not actually built, | ||
83 | # but the code will test for it and if not found use Locale::gettext_pp instead. | ||
84 | # However, this causes a file dependency on perl(Locale::gettext_xs) to be | ||
85 | # generated, which must be satisfied. | ||
86 | RPROVIDES_${PN} += "perl(Locale::gettext_xs)" | ||
87 | |||
82 | BBCLASSEXTEND = "native nativesdk" | 88 | BBCLASSEXTEND = "native nativesdk" |