summaryrefslogtreecommitdiffstats
path: root/meta/classes/patch.bbclass
diff options
context:
space:
mode:
authorChris Larson <kergoth@openedhand.com>2006-08-27 22:29:46 +0000
committerChris Larson <kergoth@openedhand.com>2006-08-27 22:29:46 +0000
commitd717d4f196fdd2307d97d62197f45500e5e32289 (patch)
treeb0c0ed53869abaad3aa0993f5ed4c029a357761d /meta/classes/patch.bbclass
parent438c974339283e4c6f2c994c01204b38634a8bc4 (diff)
downloadpoky-d717d4f196fdd2307d97d62197f45500e5e32289.tar.gz
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
Diffstat (limited to 'meta/classes/patch.bbclass')
-rw-r--r--meta/classes/patch.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/patch.bbclass b/meta/classes/patch.bbclass
index 6f6dc0e30e..6616cb11a9 100644
--- a/meta/classes/patch.bbclass
+++ b/meta/classes/patch.bbclass
@@ -93,7 +93,7 @@ def patch_init():
93 patch[param] = PatchSet.defaults[param] 93 patch[param] = PatchSet.defaults[param]
94 94
95 if patch.get("remote"): 95 if patch.get("remote"):
96 patch["file"] = bb.fetch.localpath(patch["remote"], self.d) 96 patch["file"] = bb.data.expand(bb.fetch.localpath(patch["remote"], self.d), self.d)
97 97
98 patch["filemd5"] = md5sum(patch["file"]) 98 patch["filemd5"] = md5sum(patch["file"])
99 99