dpkg-native: Don't install update-alternatives as it isn't cross rootfs capable

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Richard Purdie 2010-10-11 11:44:42 +01:00
parent b9728f63c6
commit e9af61e9c2
2 changed files with 6 additions and 1 deletions

View File

@ -1,7 +1,6 @@
DESCRIPTION = "Package maintenance system for Debian."
LICENSE = "GPL"
SECTION = "base"
PR = "r1"
SRC_URI = "${DEBIAN_MIRROR}/main/d/dpkg/dpkg_${PV}.tar.bz2 \
file://ignore_extra_fields.patch;patch=1"

View File

@ -4,6 +4,8 @@ SRC_URI += "file://noman.patch;patch=1 \
file://check_snprintf.patch \
file://check_version.patch"
PR = "r3"
EXTRA_OECONF = "--without-static-progs \
--without-dselect \
--with-start-stop-daemon \
@ -13,3 +15,7 @@ EXTRA_OECONF = "--without-static-progs \
--without-sgml-doc"
BBCLASSEXTEND = "native"
do_install_append_virtclass-native () {
rm ${D}${bindir}/update-alternatives
}