mirror of
https://git.yoctoproject.org/poky
synced 2026-09-14 03:49:32 +02:00
bitbake: fetch2: local: use path variable
Use the path variable from the fetch data instead of decoding the path manually from the plain unexpanded url. (Bitbake rev: ad3a29fa6ea53741d4e1786de35f8e7fc4292e7a) Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
3e543e8eaa
commit
f17c51c695
@@ -1236,7 +1236,7 @@ def get_checksum_file_list(d):
|
||||
found = False
|
||||
paths = ud.method.localfile_searchpaths(ud, d)
|
||||
for f in paths:
|
||||
pth = ud.decodedurl
|
||||
pth = ud.path
|
||||
if os.path.exists(f):
|
||||
found = True
|
||||
filelist.append(f + ":" + str(os.path.exists(f)))
|
||||
|
||||
Reference in New Issue
Block a user