diff options
author | Paul Sokolovsky <pmiscml@gmail.com> | 2007-06-24 11:04:21 +0000 |
---|---|---|
committer | Paul Sokolovsky <pmiscml@gmail.com> | 2007-06-24 11:04:21 +0000 |
commit | 91b1ac83d75dffc0e2edbc8e454bb96d250a968d (patch) | |
tree | 1bc1200c6b127787d6cd2d02eb4c5719bb7234a1 /classes | |
parent | fbc27b37c22fa3b80c44ff67459e2f0d34a00c2d (diff) |
rootfs_ipk.bbclass: Do not hardcode ipkg RDEPENDency.
* Instead, ad dit to DISTRO_EXTRA_RDEPENDS, so full-fledged
images bsed on task-base will get it automagically, while adhoc
images (initrds, etc.) can leave it out.
* This corresponds with how dpkg is handled, and how it is done
in poky.
* Closes #2484.
Diffstat (limited to 'classes')
-rw-r--r-- | classes/rootfs_ipk.bbclass | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/classes/rootfs_ipk.bbclass b/classes/rootfs_ipk.bbclass index 210563aed1..75c85e8f3d 100644 --- a/classes/rootfs_ipk.bbclass +++ b/classes/rootfs_ipk.bbclass @@ -9,8 +9,7 @@ do_rootfs[depends] += "ipkg-native:do_populate_staging ipkg-utils-native:do_popu IPKG_ARGS = "-f ${T}/ipkg.conf -o ${IMAGE_ROOTFS} ${@base_conditional("PACKAGE_INSTALL_NO_DEPS", "1", "-nodeps", "", d)}" -RDEPENDS += "ipkg ipkg-collateral" -PACKAGE_INSTALL += "ipkg ipkg-collateral" +DISTRO_EXTRA_RDEPENDS += " ipkg ipkg-collateral " PACKAGE_INSTALL_NO_DEPS ?= "0" rootfs_ipk_do_indexes () { |