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 | |
parent | f8e9384205c33e8a32678c67de75d5824ff2c631 (diff) | |
download | poky-d95032377212a92377e020ec8eff0afe836cb3dc.tar.gz |
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
-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 157e22bcef..68fa787a21 100644 --- a/meta/classes/src_distribute.bbclass +++ b/meta/classes/src_distribute.bbclass | |||
@@ -19,3 +19,9 @@ python do_distribute_sources () { | |||
19 | } | 19 | } |
20 | 20 | ||
21 | addtask distribute_sources before do_build after do_fetch | 21 | addtask distribute_sources before do_build after do_fetch |
22 | |||
23 | addtask distsrcall after do_distribute_sources | ||
24 | do_distall[recrdeptask] = "do_distribute_sources" | ||
25 | base_do_distsrcall() { | ||
26 | : | ||
27 | } | ||