Re: [OE-core] puzzled about definition of "build" task

2014-08-09 Thread Christopher Larson
On Sat, Aug 9, 2014 at 5:42 PM, Robert P. J. Day wrote: > first time i noticed this in base.bbclass: > > addtask build after do_populate_sysroot > do_build = "" <--- > do_build[func] = "1" > do_build[noexec] = "1" > do_build[recrdeptask] += "do_deploy" > do_build () { >

[OE-core] puzzled about definition of "build" task

2014-08-09 Thread Robert P. J. Day
first time i noticed this in base.bbclass: addtask build after do_populate_sysroot do_build = "" <--- do_build[func] = "1" do_build[noexec] = "1" do_build[recrdeptask] += "do_deploy" do_build () { : } what's with the lines do_build = "" do_build[func] = "1" i've ne