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:
Chris Larson 2006-08-27 22:29:46 +00:00
parent 438c974339
commit d717d4f196
1 changed files with 1 additions and 1 deletions

View File

@ -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"])