mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 17:19:20 +00:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
db0980203b
commit
0db0e1851c
@@ -79,4 +79,10 @@ FILES_${PN}-doc = "${infodir}/texinfo* \
|
||||
${datadir}/${tex_texinfo} \
|
||||
${mandir}/man1 ${mandir}/man5"
|
||||
|
||||
# Lie about providing the Locale::gettext_xs module. It is not actually built,
|
||||
# but the code will test for it and if not found use Locale::gettext_pp instead.
|
||||
# However, this causes a file dependency on perl(Locale::gettext_xs) to be
|
||||
# generated, which must be satisfied.
|
||||
RPROVIDES_${PN} += "perl(Locale::gettext_xs)"
|
||||
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
|
||||
Reference in New Issue
Block a user