From e8b90254747651670031e6b2b8a702732124ecac Mon Sep 17 00:00:00 2001 From: Ming Liu Date: Sun, 9 Mar 2014 10:05:52 +0000 Subject: 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 Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- meta/classes/kernel-yocto.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/classes/kernel-yocto.bbclass') diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index 707a219f65..53bc6d443c 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} -- cgit 1.2.3-korg