mirror of
https://git.yoctoproject.org/poky
synced 2026-04-27 03:32:12 +02:00
This is the result of automated script conversion: scripts/contrib/convert-overrides.py <oe-core directory> converting the metadata to use ":" as the override character instead of "_". (From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
571 B
BlitzBasic
21 lines
571 B
BlitzBasic
require newlib.inc
|
|
|
|
PROVIDES += "virtual/libc virtual/libiconv virtual/libintl"
|
|
|
|
do_configure() {
|
|
export CC_FOR_TARGET="${CC}"
|
|
${S}/configure ${EXTRA_OECONF}
|
|
}
|
|
|
|
do_install:append() {
|
|
# Move include files and libs to default directories so they can be picked up later
|
|
mv -v ${D}${prefix}/${TARGET_SYS}/lib ${D}${libdir}
|
|
mv -v ${D}${prefix}/${TARGET_SYS}/include ${D}${includedir}
|
|
|
|
# Remove original directory
|
|
rmdir ${D}${prefix}/${TARGET_SYS}
|
|
}
|
|
|
|
# No rpm package is actually created but -dev depends on it, avoid dnf error
|
|
RDEPENDS:${PN}-dev:libc-newlib = ""
|