[oe-commits] Ming Liu : kernel-yocto: replace '=' with '+='

git at git.openembedded.org git at git.openembedded.org
Tue Mar 11 15:15:08 UTC 2014


Module: openembedded-core.git
Branch: master
Commit: e8b90254747651670031e6b2b8a702732124ecac
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=e8b90254747651670031e6b2b8a702732124ecac

Author: Ming Liu <ming.liu at windriver.com>
Date:   Sun Mar  9 10:05:52 2014 +0000

kernel-yocto: replace '=' with '+='

The dependency to CCACHE_DIR was moved to ccache.bbclass in
commit 2acf8da4f13c175ea818b9514677b7059de1e3e2:
[ ccache: Separate out into its own class ]

then the '=' should be replaced by '+=', otherwise, it will overwrite
the original ${CCACHE_DIR} in dirs.

Signen-off-by: Ming Liu <ming.liu at windriver.com>

Signed-off-by: Saul Wold <sgw at linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/classes/kernel-yocto.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass
index 707a219..53bc6d4 100644
--- a/meta/classes/kernel-yocto.bbclass
+++ b/meta/classes/kernel-yocto.bbclass
@@ -236,7 +236,7 @@ do_kernel_checkout[dirs] = "${S}"
 
 addtask kernel_checkout before do_patch after do_unpack
 
-do_kernel_configme[dirs] = "${S} ${B}"
+do_kernel_configme[dirs] += "${S} ${B}"
 do_kernel_configme() {
 	echo "[INFO] doing kernel configme"
 	export KMETA=${KMETA}



More information about the Openembedded-commits mailing list