diff options
author | Xiaofeng Yan <xiaofeng.yan@windriver.com> | 2011-06-23 10:41:50 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-23 11:19:38 +0100 |
commit | c2007ba4cdb64fa9e308d3dae395c03ef4cc9161 (patch) | |
tree | 6f4d7e287d34da7f40ad431612af19760f2eab74 /meta-yocto/conf/distro | |
parent | b914de55a45029658116f729ffda3abead654c90 (diff) | |
download | poky-c2007ba4cdb64fa9e308d3dae395c03ef4cc9161.tar.gz |
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>
Diffstat (limited to 'meta-yocto/conf/distro')
-rw-r--r-- | 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 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 | |||
3 | DISTRO = "poky-lsb" | 3 | DISTRO = "poky-lsb" |
4 | DISTROOVERRIDES = "poky:linuxstdbase" | 4 | DISTROOVERRIDES = "poky:linuxstdbase" |
5 | 5 | ||
6 | DISTRO_FEATURES += "pam largefile" | 6 | DISTRO_FEATURES_append = " pam largefile" |
7 | PREFERRED_PROVIDER_virtual/libx11 = "libx11" | 7 | PREFERRED_PROVIDER_virtual/libx11 = "libx11" |
8 | 8 | ||
9 | 9 | ||