aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/bsd-headers
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2016-01-21 15:14:40 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-01-26 22:49:38 +0000
commitfa01d3732396d8accff55c43c2cc2b6e0faf20c7 (patch)
tree1026e4901b4f68e2ab391dfbb503a037791b4245 /meta/recipes-core/bsd-headers
parent05e11a59347558a7bbca1bd6e8ada77efe5106ec (diff)
downloadopenembedded-core-contrib-fa01d3732396d8accff55c43c2cc2b6e0faf20c7.tar.gz
bsd-headers: Fix LICENCE and dev package RDEPENDS
Clear out runtime deps for dev package, since PN is empty packager will try to resolve to PN when building images with musl and error out since PN is deleted as its empty musl-dev explicitly depends upon it so it will get pulled into build in right order (From OE-Core rev: 668fddd7be9aa5850ef8f15441814f3c8b98c0de) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/bsd-headers')
-rw-r--r--meta/recipes-core/bsd-headers/bsd-headers.bb6
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-core/bsd-headers/bsd-headers.bb b/meta/recipes-core/bsd-headers/bsd-headers.bb
index 12a2cca2c9..8f43d431d9 100644
--- a/meta/recipes-core/bsd-headers/bsd-headers.bb
+++ b/meta/recipes-core/bsd-headers/bsd-headers.bb
@@ -2,7 +2,8 @@
# Released under the MIT license (see COPYING.MIT for the terms)
DESCRIPTION = "bsd compatible headers"
-LICENSE = "BSD-3-Clause && BSD-2-Clause"
+LICENSE = "BSD-3-Clause & BSD-2-Clause"
+LIC_FILES_CHKSUM = "file://sys-queue.h;beginline=1;endline=32;md5=c6352b0f03bb448600456547d334b56f"
SECTION = "devel"
SRC_URI = "file://sys-queue.h \
@@ -24,4 +25,7 @@ do_install() {
#
# We will skip parsing for non-musl systems
#
+
COMPATIBLE_HOST = ".*-musl.*"
+RDEPENDS_${PN}-dev = ""
+RRECOMMENDS_${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})"