diff options
author | Koen Kooi <koen@openembedded.org> | 2007-07-16 07:33:24 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-07-16 07:33:24 +0000 |
commit | 65d1a7413f9f40230da93b31f9a399ada56e14db (patch) | |
tree | cf72419ac62af2ee15e1a72b7447765c87fd8680 /classes/rm_work.bbclass | |
parent | 484e65a218aec49236471eca60da314a1172584e (diff) |
rm_work: add rmall command that recursively rm_works (e.g. bitbake angstrom-x11-image -c rmall)
Diffstat (limited to 'classes/rm_work.bbclass')
-rw-r--r-- | classes/rm_work.bbclass | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/classes/rm_work.bbclass b/classes/rm_work.bbclass index 1b87004143..e3c92b8572 100644 --- a/classes/rm_work.bbclass +++ b/classes/rm_work.bbclass @@ -18,5 +18,12 @@ do_rm_work () { done } +addtask rmall after do_rm_work +do_rmall[recrdeptask] = "do_rm_work" +do_rmall() { + : +} + + addtask rm_work before do_build addtask rm_work after do_populate_staging |