mirror of
https://git.yoctoproject.org/poky
synced 2026-02-07 09:16:36 +01:00
* Change gettext dependency to virtual/gettext * Ensure INHIBIT_DEFAULT_DEPS removes gettext dependencies * Use BASEDEPENDS to ensure dependencies are added in native/nativesdk cases (From OE-Core rev: d19735ad5a45f969918fb73ea4845bef48d9ee24) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
18 lines
561 B
Plaintext
18 lines
561 B
Plaintext
def gettext_dependencies(d):
|
|
if d.getVar('USE_NLS', True) == 'no':
|
|
return ""
|
|
if bb.data.getVar('INHIBIT_DEFAULT_DEPS', d, True) and not oe.utils.inherits(d, 'cross-canadian'):
|
|
return ""
|
|
return d.getVar('DEPENDS_GETTEXT', False)
|
|
|
|
def gettext_oeconf(d):
|
|
# Remove the NLS bits if USE_NLS is no.
|
|
if d.getVar('USE_NLS', True) == 'no':
|
|
return '--disable-nls'
|
|
return "--enable-nls"
|
|
|
|
DEPENDS_GETTEXT = "virtual/gettext gettext-native"
|
|
|
|
BASEDEPENDS =+ "${@gettext_dependencies(d)}"
|
|
EXTRA_OECONF += "${@gettext_oeconf(d)}"
|