diff options
author | Philip Tricca <flihp@twobit.us> | 2013-09-23 17:46:26 +0000 |
---|---|---|
committer | Joe MacDonald <joe@deserted.net> | 2013-09-23 15:11:18 -0400 |
commit | 31abc748e32c57b3697fa76e7cf1cc6a298b13b0 (patch) | |
tree | 8b057ebf8c9f0befc44e99f5cf547cb2cc42d171 | |
parent | 4869998847f406402bc2f06b457cac4067743b12 (diff) | |
download | meta-selinux-31abc748e32c57b3697fa76e7cf1cc6a298b13b0.tar.gz |
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 <flihp@twobit.us>
Signed-off-by: Joe MacDonald <joe@deserted.net>
-rw-r--r-- | conf/distro/oe-selinux.conf | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ | |||
1 | DISTRO = "oe-selinux" | 1 | DISTRO = "oe-selinux" |
2 | DISTROOVERRIDES .= ":selinux" | 2 | DISTROOVERRIDES .= ":selinux" |
3 | 3 | ||
4 | DISTRO_FEATURES_append = "pam selinux" | 4 | DISTRO_FEATURES_append = " pam selinux" |