mirror of
https://git.yoctoproject.org/poky
synced 2026-07-17 04:07:06 +00:00
base.bbclass: Ensure an empty do_build tasks exists to silence a warning
The message "WARNING: Function do_build doesn't exist" doesn't look professional, so fix the underlying problem even if this warning is harmless. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
committed by
Saul Wold
parent
f0c88f220e
commit
b96412845d
@@ -438,6 +438,9 @@ base_do_package() {
|
|||||||
addtask build after do_populate_sysroot
|
addtask build after do_populate_sysroot
|
||||||
do_build = ""
|
do_build = ""
|
||||||
do_build[func] = "1"
|
do_build[func] = "1"
|
||||||
|
do_build () {
|
||||||
|
:
|
||||||
|
}
|
||||||
|
|
||||||
python () {
|
python () {
|
||||||
import exceptions, string
|
import exceptions, string
|
||||||
|
|||||||
Reference in New Issue
Block a user