blob: 848bb035396066c73661ea51a237009f8e9618a4 (
plain)
1
2
3
4
5
6
7
8
9
|
inherit native
include make_${PV}.bb
FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/make-${PV}"
S = "${WORKDIR}/make-${PV}"
do_stage() {
install -d ${STAGING_BINDIR}
install -m 755 make ${STAGING_BINDIR}
}
|