blob: a07a366df818152d1bdcaf6adbabe86966a6d428 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
DEPENDS += "python-scons-native"
EXTRA_OESCONS ?= ""
scons_do_compile() {
${STAGING_BINDIR_NATIVE}/scons PREFIX=${prefix} prefix=${prefix} ${EXTRA_OESCONS} || \
bbfatal "scons build execution failed."
}
scons_do_install() {
${STAGING_BINDIR_NATIVE}/scons PREFIX=${D}${prefix} prefix=${D}${prefix} install ${EXTRA_OESCONS}|| \
bbfatal "scons install execution failed."
}
EXPORT_FUNCTIONS do_compile do_install
|