[poky] [PATCH 1/1] poky-lsb.conf: Instead of += with _append
Xiaofeng Yan
xiaofeng.yan at windriver.com
Thu Jun 23 00:50:01 PDT 2011
From: Xiaofeng Yan <xiaofeng.yan at windriver.com>
The default variable DISTRO_FEATURES 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 <xiaofeng.yan at windriver.com>
---
meta-yocto/conf/distro/poky-lsb.conf | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/meta-yocto/conf/distro/poky-lsb.conf b/meta-yocto/conf/distro/poky-lsb.conf
index eb1cf82..49d12da 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"
--
1.7.0.4
More information about the poky
mailing list