summaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
Diffstat (limited to 'classes')
-rw-r--r--classes/clean.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/clean.bbclass b/classes/clean.bbclass
index fc53a63f97..94b97e70ed 100644
--- a/classes/clean.bbclass
+++ b/classes/clean.bbclass
@@ -19,7 +19,7 @@ def clean_stamps(d):
except OSError:
pass
-def clean_workdir(d):
+def remove_workdir(d):
from shutil import rmtree
from bb import note
@@ -54,7 +54,7 @@ python do_clean () {
bb.note("Removing staging package %s" % base_path_out(stagepkg, d))
os.system('rm -rf ' + stagepkg)
clean_stamps(d)
- clean_workdir(d)
+ remove_workdir(d)
clean_builddir(d)
clean_make(d)
}