diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-26 23:49:39 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-27 22:42:52 +0100 |
commit | bac6bb61cb41313650dfb0731d0af0a1184137db (patch) | |
tree | 0923ace5eb332e69d1c1cb5baa81b3d74678e346 /meta/recipes-extended | |
parent | a3a3376562c01eeb97f163f2f716aa9246806b86 (diff) | |
download | poky-bac6bb61cb41313650dfb0731d0af0a1184137db.tar.gz |
pbzip2: Fix native dependency on bzip2-native
bzip2-native is in ASSUME_PROVIDED but we don't just want "bzip2" but
libbz2 here. To do this, we need to DEPEND on bzip2-replacement-native
which hints to bitbake we really do want to build it.
Add the missing dependency to avoid failures on machines which don't
have libbz2-dev installed.
(From OE-Core rev: a87b7172a99051c2ea61bcfae60e922b58333291)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r-- | meta/recipes-extended/pbzip2/pbzip2_1.1.12.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-extended/pbzip2/pbzip2_1.1.12.bb b/meta/recipes-extended/pbzip2/pbzip2_1.1.12.bb index fb70d0caa9..0330981af3 100644 --- a/meta/recipes-extended/pbzip2/pbzip2_1.1.12.bb +++ b/meta/recipes-extended/pbzip2/pbzip2_1.1.12.bb | |||
@@ -9,6 +9,7 @@ LICENSE = "BSD" | |||
9 | LIC_FILES_CHKSUM = "file://COPYING;md5=4c4f2edec9679d5abef3514a816b54a4" | 9 | LIC_FILES_CHKSUM = "file://COPYING;md5=4c4f2edec9679d5abef3514a816b54a4" |
10 | 10 | ||
11 | DEPENDS = "bzip2" | 11 | DEPENDS = "bzip2" |
12 | DEPENDS_append_class-native = " bzip2-replacement-native" | ||
12 | 13 | ||
13 | SRC_URI = "https://launchpad.net/${BPN}/1.1/${PV}/+download/${BP}.tar.gz" | 14 | SRC_URI = "https://launchpad.net/${BPN}/1.1/${PV}/+download/${BP}.tar.gz" |
14 | 15 | ||