diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2007-04-18 21:22:03 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@rpsys.net> | 2007-04-18 21:22:03 +0000 |
commit | 1a7cff6077b770083062952ef6f6f7517bfd2c07 (patch) | |
tree | b9a061bdf6748a9036b76dacdce8f1902d3d1824 /classes/rootfs_ipk.bbclass | |
parent | d003671f7013dd70860e9a8e4ab1414676439461 (diff) |
classes: Add support for intertask dependencies to be specified, needed for correct operation with bitbake 1.8.x. Old behaviour is maintained in a special legacy anonymous function in base.bbclass. The patch is an improved version of the one discussed on the mailing list.
Diffstat (limited to 'classes/rootfs_ipk.bbclass')
-rw-r--r-- | classes/rootfs_ipk.bbclass | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/classes/rootfs_ipk.bbclass b/classes/rootfs_ipk.bbclass index fdd42ee429..26eca34da9 100644 --- a/classes/rootfs_ipk.bbclass +++ b/classes/rootfs_ipk.bbclass @@ -5,12 +5,11 @@ # See image.bbclass for a usage of this. # -DEPENDS_prepend="ipkg-native ipkg-utils-native fakeroot-native " -DEPENDS_append=" ${EXTRA_IMAGEDEPENDS}" -RDEPENDS += "ipkg ipkg-collateral" +do_rootfs[depends] += "ipkg-native:do_populate_staging ipkg-utils-native:do_populate_staging" IPKG_ARGS = "-f ${T}/ipkg.conf -o ${IMAGE_ROOTFS}" +RDEPENDS += "ipkg ipkg-collateral" PACKAGE_INSTALL += "ipkg ipkg-collateral" rootfs_ipk_do_indexes () { |