mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
This adds glibc error() API implementation which is needed by few packages still. (From OE-Core rev: c3f0f00a8dcc76ece298cf4debf1ca71f930ec57) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
27 lines
649 B
BlitzBasic
27 lines
649 B
BlitzBasic
# Copyright (C) 2023 Khem Raj <raj.khem@gmail.com>
|
|
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
SUMMARY = "error API GNU extention implementation"
|
|
LICENSE = "BSD-2-Clause"
|
|
LIC_FILES_CHKSUM = "file://error.h;beginline=1;md5=2ee396b23e8507fbf8f98af0471a77c6"
|
|
SECTION = "devel"
|
|
|
|
SRC_URI = "file://error.h"
|
|
|
|
do_configure[noexec] = "1"
|
|
do_compile[noexec] = "1"
|
|
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
do_install() {
|
|
install -Dm 0644 ${S}/error.h -t ${D}${includedir}
|
|
}
|
|
#
|
|
# We will skip parsing for non-musl systems
|
|
#
|
|
COMPATIBLE_HOST = ".*-musl.*"
|
|
DEV_PKG_DEPENDENCY = ""
|
|
RRECOMMENDS:${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})"
|