blob: 89b5da2d0e76f8d4aa7ba0a7e2877a5066d03f94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
DEPENDS += "python-scons-native"
scons_do_compile() {
${STAGING_BINDIR_NATIVE}/scons || \
oefatal "scons build execution failed."
}
scons_do_install() {
${STAGING_BINDIR_NATIVE}/scons install || \
oefatal "scons install execution failed."
}
EXPORT_FUNCTIONS do_compile do_install
|