diff options
author | Chris Larson <kergoth@openedhand.com> | 2006-08-27 22:29:46 +0000 |
---|---|---|
committer | Chris Larson <kergoth@openedhand.com> | 2006-08-27 22:29:46 +0000 |
commit | d717d4f196fdd2307d97d62197f45500e5e32289 (patch) | |
tree | b0c0ed53869abaad3aa0993f5ed4c029a357761d | |
parent | 438c974339283e4c6f2c994c01204b38634a8bc4 (diff) | |
download | poky-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
-rw-r--r-- | meta/classes/patch.bbclass | 2 |
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 | ||