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 800e1175d7..f845f7d47d 100644
--- a/meta/classes/populate_sdk_ext.bbclass
+++ b/meta/classes/populate_sdk_ext.bbclass
@@ -121,7 +121,7 @@ SDK_TITLE_task-populate-sdk-ext = "${@d.getVar('DISTRO_NAME') or d.getVar('DISTR
121def clean_esdk_builddir(d, sdkbasepath): 121def clean_esdk_builddir(d, sdkbasepath):
122 """Clean up traces of the fake build for create_filtered_tasklist()""" 122 """Clean up traces of the fake build for create_filtered_tasklist()"""
123 import shutil 123 import shutil
124 cleanpaths = 'cache conf/sanity_info tmp'.split() 124 cleanpaths = ['cache', 'tmp']
125 for pth in cleanpaths: 125 for pth in cleanpaths:
126 fullpth = os.path.join(sdkbasepath, pth) 126 fullpth = os.path.join(sdkbasepath, pth)
127 if os.path.isdir(fullpth): 127 if os.path.isdir(fullpth):