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__.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py
index 756f60212f..7ec1fea5d0 100644
--- a/bitbake/lib/bb/fetch2/__init__.py
+++ b/bitbake/lib/bb/fetch2/__init__.py
@@ -1195,8 +1195,6 @@ def get_checksum_file_list(d):
1195 paths = ud.method.localpaths(ud, d) 1195 paths = ud.method.localpaths(ud, d)
1196 for f in paths: 1196 for f in paths:
1197 pth = ud.decodedurl 1197 pth = ud.decodedurl
1198 if '*' in pth:
1199 f = os.path.join(os.path.abspath(f), pth)
1200 if f.startswith(dl_dir): 1198 if f.startswith(dl_dir):
1201 # The local fetcher's behaviour is to return a path under DL_DIR if it couldn't find the file anywhere else 1199 # The local fetcher's behaviour is to return a path under DL_DIR if it couldn't find the file anywhere else
1202 if os.path.exists(f): 1200 if os.path.exists(f):
@@ -1365,9 +1363,6 @@ class FetchMethod(object):
1365 # We cannot compute checksums for directories 1363 # We cannot compute checksums for directories
1366 if os.path.isdir(urldata.localpath): 1364 if os.path.isdir(urldata.localpath):
1367 return False 1365 return False
1368 if urldata.localpath.find("*") != -1:
1369 return False
1370
1371 return True 1366 return True
1372 1367
1373 def recommends_checksum(self, urldata): 1368 def recommends_checksum(self, urldata):
@@ -1430,11 +1425,6 @@ class FetchMethod(object):
1430 iterate = False 1425 iterate = False
1431 file = urldata.localpath 1426 file = urldata.localpath
1432 1427
1433 # Localpath can't deal with 'dir/*' entries, so it converts them to '.',
1434 # but it must be corrected back for local files copying
1435 if urldata.basename == '*' and file.endswith('/.'):
1436 file = '%s/%s' % (file.rstrip('/.'), urldata.path)
1437
1438 try: 1428 try:
1439 unpack = bb.utils.to_boolean(urldata.parm.get('unpack'), True) 1429 unpack = bb.utils.to_boolean(urldata.parm.get('unpack'), True)
1440 except ValueError as exc: 1430 except ValueError as exc:
@@ -1613,8 +1603,6 @@ class FetchMethod(object):
1613 """ 1603 """
1614 if os.path.exists(ud.localpath): 1604 if os.path.exists(ud.localpath):
1615 return True 1605 return True
1616 if ud.localpath.find("*") != -1:
1617 return True
1618 return False 1606 return False
1619 1607
1620 def implicit_urldata(self, ud, d): 1608 def implicit_urldata(self, ud, d):