poky/openembedded/classes/scons.bbclass
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