diff options
author | Ming Liu <ming.liu@windriver.com> | 2014-03-09 10:05:52 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-11 08:11:40 -0700 |
commit | 30f8ec50bb8981de69aab310e5935bd87f0a9d66 (patch) | |
tree | 8a1c3deb3905f60f071c8f14eaa00e5e92a318f2 | |
parent | 1db8eb47b8ffd44c4f25f2a2de63a95a2e476bf5 (diff) | |
download | poky-30f8ec50bb8981de69aab310e5935bd87f0a9d66.tar.gz |
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@windriver.com>
(From OE-Core rev: e8b90254747651670031e6b2b8a702732124ecac)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/kernel-yocto.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
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}" | |||
236 | 236 | ||
237 | addtask kernel_checkout before do_patch after do_unpack | 237 | addtask kernel_checkout before do_patch after do_unpack |
238 | 238 | ||
239 | do_kernel_configme[dirs] = "${S} ${B}" | 239 | do_kernel_configme[dirs] += "${S} ${B}" |
240 | do_kernel_configme() { | 240 | do_kernel_configme() { |
241 | echo "[INFO] doing kernel configme" | 241 | echo "[INFO] doing kernel configme" |
242 | export KMETA=${KMETA} | 242 | export KMETA=${KMETA} |