mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-04 16:10:04 +00:00
14 lines
301 B
Plaintext
14 lines
301 B
Plaintext
DEPENDS += "python-scons-native"
|
|
|
|
scons_do_compile() {
|
|
${STAGING_BINDIR}/scons || \
|
|
oefatal "scons build execution failed."
|
|
}
|
|
|
|
scons_do_install() {
|
|
${STAGING_BINDIR}/scons install || \
|
|
oefatal "scons install execution failed."
|
|
}
|
|
|
|
EXPORT_FUNCTIONS do_compile do_install
|