mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
The new bash logging class provides bbnote, bbwarn, bbfatal, and bbdebug replacements (as well as bbplain and bberror) for the oe* equivalents. Use the new bb* API in preparation to delete the oe* logging API. This patch was automatically generated by a sed script. The result has been visually inspected and used to build core-image-sato for qemux86. (From OE-Core rev: a1f09fce5caba389d0484b169f0cde85d64514fa) Signed-off-by: Darren Hart <dvhart@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 lines
391 B
Plaintext
14 lines
391 B
Plaintext
DEPENDS += "python-scons-native"
|
|
|
|
scons_do_compile() {
|
|
${STAGING_BINDIR_NATIVE}/scons PREFIX=${prefix} prefix=${prefix} || \
|
|
bbfatal "scons build execution failed."
|
|
}
|
|
|
|
scons_do_install() {
|
|
${STAGING_BINDIR_NATIVE}/scons PREFIX=${D}${prefix} prefix=${D}${prefix} install || \
|
|
bbfatal "scons install execution failed."
|
|
}
|
|
|
|
EXPORT_FUNCTIONS do_compile do_install
|