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 <xiaofeng.yan@windriver.com>
This commit is contained in:
Xiaofeng Yan 2011-06-23 10:41:50 +08:00 committed by Richard Purdie
parent b914de55a4
commit c2007ba4cd
1 changed files with 1 additions and 1 deletions

View File

@ -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"