summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilip Tricca <flihp@twobit.us>2013-09-23 17:46:26 +0000
committerJoe MacDonald <joe@deserted.net>2013-09-23 15:11:18 -0400
commit31abc748e32c57b3697fa76e7cf1cc6a298b13b0 (patch)
tree8b057ebf8c9f0befc44e99f5cf547cb2cc42d171
parent4869998847f406402bc2f06b457cac4067743b12 (diff)
downloadmeta-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.conf2
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 @@
1DISTRO = "oe-selinux" 1DISTRO = "oe-selinux"
2DISTROOVERRIDES .= ":selinux" 2DISTROOVERRIDES .= ":selinux"
3 3
4DISTRO_FEATURES_append = "pam selinux" 4DISTRO_FEATURES_append = " pam selinux"