1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-10 05:49:28 +00:00
Files
poky/openembedded/classes/scons.bbclass
T
Richard Purdie 4b46c1f6e8 Initial population
git-svn-id: https://svn.o-hand.com/repos/poky@1 311d38ba-8fff-0310-9ca6-ca027cbcb966
2005-08-31 10:45:47 +00:00

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