]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
poky-lsb.conf: Instead of += with _append
authorXiaofeng Yan <xiaofeng.yan@windriver.com>
Thu, 23 Jun 2011 02:41:50 +0000 (10:41 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 23 Jun 2011 10:19:38 +0000 (11:19 +0100)
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>
meta-yocto/conf/distro/poky-lsb.conf

index eb1cf8239c7bf84d120a7820244e1487914e5ec6..49d12da0602d624e3cb4c0b21026715411d54bb2 100644 (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"