aboutsummaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2014-04-24 14:09:39 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-05-06 17:59:07 +0100
commitaad19e4381a8a09c354e5899885997c5b4cd115b (patch)
tree758eb80fe75c40b6c213a3c369cc023a16f0d132 /meta
parent279c221d9dfce43254ed1f03cf84ea454cc7b485 (diff)
downloadopenembedded-core-contrib-aad19e4381a8a09c354e5899885997c5b4cd115b.tar.gz
kernel-yocto: quote kconfig mode check
We allow inheriting recipes to control the kconfig mode used by merge_config.sh via the KCONFIG_MODE variable. An error crept into the variable reference, and since it is not quoted, the true condition always runs. The result is that operations without an explicit kconfig mode cannot trigger allnoconfig for defconfig builds, which can result in some options being dropped from the final .config. Quoting the reference allows it to evaluate properly. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/kernel-yocto.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass
index 53bc6d443c..6010dc94e0 100644
--- a/meta/classes/kernel-yocto.bbclass
+++ b/meta/classes/kernel-yocto.bbclass
@@ -241,7 +241,7 @@ do_kernel_configme() {
echo "[INFO] doing kernel configme"
export KMETA=${KMETA}
- if [ -n ${KCONFIG_MODE} ]; then
+ if [ -n "${KCONFIG_MODE}" ]; then
configmeflags=${KCONFIG_MODE}
else
# If a defconfig was passed, use =n as the baseline, which is achieved