blob: 13256d5b9b3d50790999899fef49bda710e42d49 [file] [log] [blame]
def target_selinux(d, truevar = 'selinux', falsevar = ''):
if not bb.utils.contains("DISTRO_FEATURES", "selinux", True, False, d):
return falsevar
pn = d.getVar("PN")
type = pn.replace(d.getVar("BPN"), "")
if type in ("-native", "nativesdk-", "-cross", "-crosssdk"):
return falsevar
return truevar
LIBSELINUX = "${@target_selinux(d, 'libselinux')}"