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_tar.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_tar.bbclass')
-rw-r--r-- | meta/classes/package_tar.bbclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/classes/package_tar.bbclass b/meta/classes/package_tar.bbclass index cb4c42b261..392a4f222e 100644 --- a/meta/classes/package_tar.bbclass +++ b/meta/classes/package_tar.bbclass | |||
@@ -99,7 +99,10 @@ python do_package_tar () { | |||
99 | python () { | 99 | python () { |
100 | import bb | 100 | import bb |
101 | if bb.data.getVar('PACKAGES', d, True) != '': | 101 | if bb.data.getVar('PACKAGES', d, True) != '': |
102 | bb.data.setVarFlag('do_package_write_tar', 'depends', 'tar-native:do_populate_staging', d) | 102 | deps = (bb.data.getVarFlag('do_package_write_tar', 'depends', d) or "").split() |
103 | deps.append('tar-native:do_populate_staging') | ||
104 | deps.append('fakeroot-native:do_populate_staging') | ||
105 | bb.data.setVarFlag('do_package_write_tar', 'depends', " ".join(deps), d) | ||
103 | } | 106 | } |
104 | 107 | ||
105 | 108 | ||