diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2012-02-26 22:53:02 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-02-26 22:51:41 +0000 |
commit | 960ee8076e860353a05eb2eb7f825a455c54698d (patch) | |
tree | b4f479cd4f5a407464b2173026fe508b5997f8da /meta/recipes-kernel/linux/linux-yocto_3.0.bb | |
parent | 30253358f5e76fb7b25be27198b4c125e0dbdf2c (diff) | |
download | openembedded-core-960ee8076e860353a05eb2eb7f825a455c54698d.tar.gz openembedded-core-960ee8076e860353a05eb2eb7f825a455c54698d.tar.bz2 openembedded-core-960ee8076e860353a05eb2eb7f825a455c54698d.zip |
More quoting fixes
* We have various variables which are either not quoted at all or are half
quoted. This patch fixes the bad exmaples so everything is consistent.
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/linux/linux-yocto_3.0.bb')
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto_3.0.bb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto_3.0.bb b/meta/recipes-kernel/linux/linux-yocto_3.0.bb index 44a9fe4402..d52e93adaa 100644 --- a/meta/recipes-kernel/linux/linux-yocto_3.0.bb +++ b/meta/recipes-kernel/linux/linux-yocto_3.0.bb @@ -8,7 +8,7 @@ KMACHINE_qemuppc = "yocto/standard/qemu-ppc32" KMACHINE_qemumips = "yocto/standard/mti-malta32-be" KMACHINE_qemuarm = "yocto/standard/arm-versatile-926ejs" -KBRANCH = ${KMACHINE} +KBRANCH = "${KMACHINE}" LINUX_VERSION ?= "3.0.18" @@ -28,9 +28,9 @@ SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.0;protocol=git;nocheckout=1; COMPATIBLE_MACHINE = "(qemuarm|qemux86|qemuppc|qemumips|qemux86-64)" # Functionality flags -KERNEL_FEATURES="features/netfilter" -KERNEL_FEATURES_append=" features/taskstats" -KERNEL_FEATURES_append_qemux86=" cfg/sound" -KERNEL_FEATURES_append_qemux86-64=" cfg/sound" +KERNEL_FEATURES = "features/netfilter" +KERNEL_FEATURES_append = " features/taskstats" +KERNEL_FEATURES_append_qemux86 = " cfg/sound" +KERNEL_FEATURES_append_qemux86-64 = " cfg/sound" require linux-tools.inc |