mirror of
https://git.yoctoproject.org/poky
synced 2026-03-19 13:49:41 +01:00
Patch.bbclass: fix bug resulting in a failure to md5 the local path.. it broke when localpath() included variable references.
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@662 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
@@ -93,7 +93,7 @@ def patch_init():
|
||||
patch[param] = PatchSet.defaults[param]
|
||||
|
||||
if patch.get("remote"):
|
||||
patch["file"] = bb.fetch.localpath(patch["remote"], self.d)
|
||||
patch["file"] = bb.data.expand(bb.fetch.localpath(patch["remote"], self.d), self.d)
|
||||
|
||||
patch["filemd5"] = md5sum(patch["file"])
|
||||
|
||||
|
||||
Reference in New Issue
Block a user