summaryrefslogtreecommitdiff
path: root/bitbake/lib/bb/utils.py
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2008-08-18 07:56:04 +0000
committerRichard Purdie <richard@openedhand.com>2008-08-18 07:56:04 +0000
commit5ca566349c46362be64fc6a88ed88ad3ad601069 (patch)
tree4377347a371d7dd47bcb2940657d838f1f9b6ee9 /bitbake/lib/bb/utils.py
parent77c01014e02e3e0a9879673352010c67cba206ea (diff)
downloadopenembedded-core-5ca566349c46362be64fc6a88ed88ad3ad601069.tar.gz
openembedded-core-5ca566349c46362be64fc6a88ed88ad3ad601069.tar.bz2
openembedded-core-5ca566349c46362be64fc6a88ed88ad3ad601069.zip
bitbake/utils.py: Add prunedir function to utils collection
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5065 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'bitbake/lib/bb/utils.py')
-rw-r--r--bitbake/lib/bb/utils.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py
index 19327b7157..ec46021b55 100644
--- a/bitbake/lib/bb/utils.py
+++ b/bitbake/lib/bb/utils.py
@@ -268,3 +268,13 @@ def sha256_file(filename):
for line in open(filename):
s.update(line)
return s.hexdigest()
+
+def prunedir(topdir):
+ # Delete everything reachable from the directory named in 'topdir'.
+ # CAUTION: This is dangerous!
+ for root, dirs, files in os.walk(topdir, topdown=False):
+ for name in files:
+ os.remove(os.path.join(root, name))
+ for name in dirs:
+ os.rmdir(os.path.join(root, name))
+ os.rmdir(topdir)