mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 17:59:59 +00:00
a398b07f29
Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
28 lines
457 B
BlitzBasic
28 lines
457 B
BlitzBasic
PR = "${INC_PR}.0"
|
|
|
|
require klibc.inc
|
|
|
|
export KLCC_INST = "${STAGING_DIR_TARGET}/lib/klibc"
|
|
|
|
SRC_URI += "file://klcc_prefix.patch \
|
|
file://use-env-for-perl.patch"
|
|
|
|
DEPENDS = "klibc"
|
|
|
|
FILESPATH =. "${FILE_DIRNAME}/klibc-${PV}:"
|
|
|
|
inherit cross
|
|
|
|
do_configure () {
|
|
:
|
|
}
|
|
|
|
do_compile() {
|
|
oe_runmake klcc
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${base_bindir}
|
|
install -m 0755 klcc/klcc ${D}${base_bindir}/${TARGET_PREFIX}klcc
|
|
}
|