summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/fetch2/__init__.py')
-rw-r--r--bitbake/lib/bb/fetch2/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py
index 07de6c2693..731c160892 100644
--- a/bitbake/lib/bb/fetch2/__init__.py
+++ b/bitbake/lib/bb/fetch2/__init__.py
@@ -1197,14 +1197,14 @@ def get_checksum_file_list(d):
1197 1197
1198 return " ".join(filelist) 1198 return " ".join(filelist)
1199 1199
1200def get_file_checksums(filelist, pn): 1200def get_file_checksums(filelist, pn, localdirsexclude):
1201 """Get a list of the checksums for a list of local files 1201 """Get a list of the checksums for a list of local files
1202 1202
1203 Returns the checksums for a list of local files, caching the results as 1203 Returns the checksums for a list of local files, caching the results as
1204 it proceeds 1204 it proceeds
1205 1205
1206 """ 1206 """
1207 return _checksum_cache.get_checksums(filelist, pn) 1207 return _checksum_cache.get_checksums(filelist, pn, localdirsexclude)
1208 1208
1209 1209
1210class FetchData(object): 1210class FetchData(object):