blob: 13256d5b9b3d50790999899fef49bda710e42d49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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')}"
|