From c2007ba4cdb64fa9e308d3dae395c03ef4cc9161 Mon Sep 17 00:00:00 2001 From: Xiaofeng Yan Date: Thu, 23 Jun 2011 10:41:50 +0800 Subject: poky-lsb.conf: Instead of += with _append The default variable DISTRO_FEATHURE was set in poky.conf before \ moving to defaultsetup.conf. Defaultsetup.conf is included after poky-lsb.conf \ So poky-lsb.conf sets the variable using += but since its empty, \ it might as well be an = and then the later ?= doesn't do anything since the \ variable is already set. Signed-off-by: Xiaofeng Yan --- meta-yocto/conf/distro/poky-lsb.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-yocto') diff --git a/meta-yocto/conf/distro/poky-lsb.conf b/meta-yocto/conf/distro/poky-lsb.conf index eb1cf8239c..49d12da060 100644 --- a/meta-yocto/conf/distro/poky-lsb.conf +++ b/meta-yocto/conf/distro/poky-lsb.conf @@ -3,7 +3,7 @@ require conf/distro/poky.conf DISTRO = "poky-lsb" DISTROOVERRIDES = "poky:linuxstdbase" -DISTRO_FEATURES += "pam largefile" +DISTRO_FEATURES_append = " pam largefile" PREFERRED_PROVIDER_virtual/libx11 = "libx11" -- cgit v1.2.3-54-g00ecf