From 4b46c1f6e891b1ddd5968536440b888661fade3e Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 31 Aug 2005 10:45:47 +0000 Subject: Initial population git-svn-id: https://svn.o-hand.com/repos/poky@1 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- openembedded/classes/rm_work.bbclass | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 openembedded/classes/rm_work.bbclass (limited to 'openembedded/classes/rm_work.bbclass') diff --git a/openembedded/classes/rm_work.bbclass b/openembedded/classes/rm_work.bbclass new file mode 100644 index 000000000..340446917 --- /dev/null +++ b/openembedded/classes/rm_work.bbclass @@ -0,0 +1,22 @@ +# +# Removes source after build +# +# To use it add that line to conf/local.conf: +# +# INHERIT += "rm_work" +# + +do_rm_work () { + cd ${WORKDIR} + for dir in * + do + if [ `basename ${S}` == $dir ]; then + rm -rf $dir/* + elif [ $dir != 'temp' ]; then + rm -rf $dir + fi + done +} + +addtask rm_work before do_build +addtask rm_work after do_package -- cgit v1.2.3