1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-06 14:49:50 +00:00
Files
2007-08-08 20:41:55 +00:00

14 lines
391 B
Plaintext

DEPENDS += "python-scons-native"
scons_do_compile() {
${STAGING_BINDIR_NATIVE}/scons PREFIX=${prefix} prefix=${prefix} || \
oefatal "scons build execution failed."
}
scons_do_install() {
${STAGING_BINDIR_NATIVE}/scons PREFIX=${D}${prefix} prefix=${D}${prefix} install || \
oefatal "scons install execution failed."
}
EXPORT_FUNCTIONS do_compile do_install