diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-11-28 20:01:41 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-11-28 20:01:41 +0000 |
commit | d862b5758c48968e6b40597b60d31673b61007a1 (patch) | |
tree | e18efc8db2e9dd079d5ba012ecd0fddaf6d34215 /meta/classes/package_ipk.bbclass | |
parent | 91225da5b854cc0b6416041b47762841eb53b606 (diff) | |
download | poky-d862b5758c48968e6b40597b60d31673b61007a1.tar.gz |
package_{ipk|deb|tar|rpm): append depend-tasks instead of overwriting
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3265 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes/package_ipk.bbclass')
-rw-r--r-- | meta/classes/package_ipk.bbclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/classes/package_ipk.bbclass b/meta/classes/package_ipk.bbclass index 877ea980e3..abb679830d 100644 --- a/meta/classes/package_ipk.bbclass +++ b/meta/classes/package_ipk.bbclass | |||
@@ -303,7 +303,10 @@ python do_package_ipk () { | |||
303 | python () { | 303 | python () { |
304 | import bb | 304 | import bb |
305 | if bb.data.getVar('PACKAGES', d, True) != '': | 305 | if bb.data.getVar('PACKAGES', d, True) != '': |
306 | bb.data.setVarFlag('do_package_write_ipk', 'depends', 'ipkg-utils-native:do_populate_staging fakeroot-native:do_populate_staging', d) | 306 | deps = (bb.data.getVarFlag('do_package_write_ipk', 'depends', d) or "").split() |
307 | deps.append('ipkg-utils-native:do_populate_staging') | ||
308 | deps.append('fakeroot-native:do_populate_staging') | ||
309 | bb.data.setVarFlag('do_package_write_ipk', 'depends', " ".join(deps), d) | ||
307 | } | 310 | } |
308 | 311 | ||
309 | python do_package_write_ipk () { | 312 | python do_package_write_ipk () { |