blob: 5a98407a6699c3a5c07c88ac131997f474493655 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
include modutils_${PV}.oe
inherit cross
S = "${WORKDIR}/modutils-${PV}"
DEPENDS = "patcher-native"
FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/modutils-${PV}-${PR}"
PACKAGES = ""
sbindir = "${prefix}/bin"
EXTRA_OECONF_append = " --program-prefix=${TARGET_PREFIX}"
do_stage () {
oe_runmake install
}
do_install () {
:
}
|