diff options
Diffstat (limited to 'meta/lib/oe/patch.py')
-rw-r--r-- | meta/lib/oe/patch.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oe/patch.py b/meta/lib/oe/patch.py index 75fb91e0fb..f4ccb3e183 100644 --- a/meta/lib/oe/patch.py +++ b/meta/lib/oe/patch.py | |||
@@ -179,7 +179,7 @@ class GitApplyTree(PatchTree): | |||
179 | 179 | ||
180 | class QuiltTree(PatchSet): | 180 | class QuiltTree(PatchSet): |
181 | def _runcmd(self, args, run = True): | 181 | def _runcmd(self, args, run = True): |
182 | quiltrc = bb.data.getVar('QUILTRCFILE', self.d, 1) | 182 | quiltrc = self.d.getVar('QUILTRCFILE', 1) |
183 | if not run: | 183 | if not run: |
184 | return ["quilt"] + ["--quiltrc"] + [quiltrc] + args | 184 | return ["quilt"] + ["--quiltrc"] + [quiltrc] + args |
185 | runcmd(["quilt"] + ["--quiltrc"] + [quiltrc] + args, self.dir) | 185 | runcmd(["quilt"] + ["--quiltrc"] + [quiltrc] + args, self.dir) |
@@ -357,7 +357,7 @@ class UserResolver(Resolver): | |||
357 | # Patch application failed | 357 | # Patch application failed |
358 | patchcmd = self.patchset.Push(True, False, False) | 358 | patchcmd = self.patchset.Push(True, False, False) |
359 | 359 | ||
360 | t = bb.data.getVar('T', self.patchset.d, 1) | 360 | t = self.patchset.d.getVar('T', 1) |
361 | if not t: | 361 | if not t: |
362 | bb.msg.fatal("Build", "T not set") | 362 | bb.msg.fatal("Build", "T not set") |
363 | bb.utils.mkdirhier(t) | 363 | bb.utils.mkdirhier(t) |