diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-28 15:49:13 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-02 17:25:28 +0000 |
commit | 0d47ab74b115802c4b35c203abc7befcca2ebdba (patch) | |
tree | dae0998d2b9348a292f783b3b482e2bf9c0db2b1 | |
parent | 6fab87e128ed48eff289d68fd2c7692b1b981c2e (diff) | |
download | poky-0d47ab74b115802c4b35c203abc7befcca2ebdba.tar.gz |
dpkg: Use bzip2-replacement-native
bzip2-native is in ASSUME_PROVIDED so the dependency that dpkg has doesn't correctly
trigger the build dependency. This shows up if you don't have bzip2 development
headers on your build machine and you:
bitbake dpkg-native
bitbake dpkg-native -c cleansstate
rm tmp -rf
bitbake dpkg-native
This patch uses the bzip2-replacement-native dependency as a handful
of other recipes do to make sure libbz2 is available.
(From OE-Core rev: 1a84333bcc73e6eba14217dd9704678a4da9ab4b)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/dpkg/dpkg.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/dpkg/dpkg.inc b/meta/recipes-devtools/dpkg/dpkg.inc index c0c897cf2f..471151ed3b 100644 --- a/meta/recipes-devtools/dpkg/dpkg.inc +++ b/meta/recipes-devtools/dpkg/dpkg.inc | |||
@@ -6,7 +6,7 @@ SRC_URI = "${DEBIAN_MIRROR}/main/d/dpkg/dpkg_${PV}.tar.xz \ | |||
6 | file://ignore_extra_fields.patch" | 6 | file://ignore_extra_fields.patch" |
7 | 7 | ||
8 | DEPENDS = "zlib bzip2 perl ncurses" | 8 | DEPENDS = "zlib bzip2 perl ncurses" |
9 | DEPENDS_class-native = "bzip2-native zlib-native virtual/update-alternatives-native gettext-native perl-native" | 9 | DEPENDS_class-native = "bzip2-replacement-native zlib-native virtual/update-alternatives-native gettext-native perl-native" |
10 | RDEPENDS_${PN} = "${VIRTUAL-RUNTIME_update-alternatives} xz" | 10 | RDEPENDS_${PN} = "${VIRTUAL-RUNTIME_update-alternatives} xz" |
11 | RDEPENDS_${PN}_class-native = "xz-native" | 11 | RDEPENDS_${PN}_class-native = "xz-native" |
12 | 12 | ||