summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/populate_sdk_ext.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass
index af6e1b6e6a..9511e553f5 100644
--- a/meta/classes/populate_sdk_ext.bbclass
+++ b/meta/classes/populate_sdk_ext.bbclass
@@ -124,7 +124,7 @@ SDK_TITLE_task-populate-sdk-ext = "${@d.getVar('DISTRO_NAME') or d.getVar('DISTR
124def clean_esdk_builddir(d, sdkbasepath): 124def clean_esdk_builddir(d, sdkbasepath):
125 """Clean up traces of the fake build for create_filtered_tasklist()""" 125 """Clean up traces of the fake build for create_filtered_tasklist()"""
126 import shutil 126 import shutil
127 cleanpaths = 'cache conf/sanity_info tmp'.split() 127 cleanpaths = ['cache', 'tmp']
128 for pth in cleanpaths: 128 for pth in cleanpaths:
129 fullpth = os.path.join(sdkbasepath, pth) 129 fullpth = os.path.join(sdkbasepath, pth)
130 if os.path.isdir(fullpth): 130 if os.path.isdir(fullpth):