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:
Joshua Lock
2009-12-17 10:26:05 +00:00
parent 459861b9c0
commit 4859945b11

View File

@@ -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"