diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-06-05 16:32:40 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-06-05 16:32:40 +0000 |
commit | d95032377212a92377e020ec8eff0afe836cb3dc (patch) | |
tree | df0dc8276070fa3d3a7021c9e31ebb13f12db5ee /meta | |
parent | f8e9384205c33e8a32678c67de75d5824ff2c631 (diff) | |
download | openembedded-core-d95032377212a92377e020ec8eff0afe836cb3dc.tar.gz openembedded-core-d95032377212a92377e020ec8eff0afe836cb3dc.tar.bz2 openembedded-core-d95032377212a92377e020ec8eff0afe836cb3dc.tar.xz openembedded-core-d95032377212a92377e020ec8eff0afe836cb3dc.zip |
src_distribute.bbclass: add distsrcall task which calls do_distribute_sources recursively
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1863 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/src_distribute.bbclass | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/classes/src_distribute.bbclass b/meta/classes/src_distribute.bbclass index 157e22bce..68fa787a2 100644 --- a/meta/classes/src_distribute.bbclass +++ b/meta/classes/src_distribute.bbclass @@ -19,3 +19,9 @@ python do_distribute_sources () { } addtask distribute_sources before do_build after do_fetch + +addtask distsrcall after do_distribute_sources +do_distall[recrdeptask] = "do_distribute_sources" +base_do_distsrcall() { + : +} |