diff options
author | Ross Burton <ross.burton@intel.com> | 2016-07-28 20:37:04 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-08-04 15:05:46 +0100 |
commit | 614d976ee97d6386c37afb54add5b83741ca401e (patch) | |
tree | ca602c58bbdab872ee8fe59fe24797b862bc9236 /meta/classes | |
parent | 7918e73e9c5fe8c8c1c1d341eaa42f2f7d3ddb69 (diff) | |
download | openembedded-core-contrib-614d976ee97d6386c37afb54add5b83741ca401e.tar.gz |
cml1: fix tasks after default [dirs] changed
These tasks relied upon [dirs] being ${B} by default. As the functions are not
simple, add back [dirs] so they work again.
[ YOCTO #10027 ]
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/cml1.bbclass | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/cml1.bbclass b/meta/classes/cml1.bbclass index b5dc028a2bb..58348062691 100644 --- a/meta/classes/cml1.bbclass +++ b/meta/classes/cml1.bbclass @@ -42,6 +42,7 @@ python do_menuconfig() { } do_menuconfig[depends] += "ncurses-native:do_populate_sysroot" do_menuconfig[nostamp] = "1" +do_menuconfig[dirs] = "${B}" addtask menuconfig after do_configure python do_diffconfig() { @@ -73,4 +74,5 @@ python do_diffconfig() { } do_diffconfig[nostamp] = "1" +do_diffconfig[dirs] = "${B}" addtask diffconfig |