mirror of
https://git.yoctoproject.org/poky
synced 2026-04-21 21:32:12 +02:00
insane.bbclass: Handle native packages in the gettext test
When the package we are checking is a native package we need to check for gettext-native rather than gettext in the DEPENDS. Signed-off-by: Joshua Lock <josh@linux.intel.com>
This commit is contained in:
@@ -442,8 +442,12 @@ def package_qa_check_rdepends(pkg, workdir, d):
|
||||
def configure_qa_check_gettext(d):
|
||||
# Check to see if gettext is required and if so whether it's in DEPENDS
|
||||
# Returning False means we need gettext but don't have it in DEPENDS
|
||||
if bb.data.inherits_class('native', d):
|
||||
gt = "gettext-native"
|
||||
else:
|
||||
gt = "gettext"
|
||||
deps = bb.utils.explode_deps(bb.data.getVar('DEPENDS', d, True) or "")
|
||||
if "gettext" in deps:
|
||||
if gt in deps:
|
||||
return True
|
||||
|
||||
check = "grep \"^[[:space:]]*AM_GNU_GETTEXT\" $CONFIGURE_AC >/dev/null"
|
||||
|
||||
Reference in New Issue
Block a user