From 31abc748e32c57b3697fa76e7cf1cc6a298b13b0 Mon Sep 17 00:00:00 2001 From: Philip Tricca Date: Mon, 23 Sep 2013 17:46:26 +0000 Subject: Add leading whitespace to DISTRO_FEATURES_append in oe-selinux.conf The lack of leading whitespace was causing two values in the DISTRO_FEATURES variable to be combined. This was causing 'sysvinit' from DISTRO_FEATURES_BACKFILL and 'pam' (from oe-selinux) to be combined into 'sysvinitpam' thus dropping both from the DISTRO_FEATURES. Signed-off-by: Philip Tricca Signed-off-by: Joe MacDonald --- conf/distro/oe-selinux.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/distro/oe-selinux.conf b/conf/distro/oe-selinux.conf index 9523abf..5ae2179 100644 --- a/conf/distro/oe-selinux.conf +++ b/conf/distro/oe-selinux.conf @@ -1,4 +1,4 @@ DISTRO = "oe-selinux" DISTROOVERRIDES .= ":selinux" -DISTRO_FEATURES_append = "pam selinux" +DISTRO_FEATURES_append = " pam selinux" -- cgit v1.2.3-54-g00ecf