rm_work.bbclasS: Don't remove the pseudo database as it causes problems with meta-toolchin

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Richard Purdie 2010-07-25 15:27:16 +01:00
parent 78292128a6
commit 2685863618
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ do_rm_work () {
do
if [ `basename ${S}` = $dir ]; then
rm -rf $dir
elif [ $dir != 'temp' ]; then
elif [ $dir != 'temp' -a $dir != 'pseudo' ]; then
rm -rf $dir
fi
done