aboutsummaryrefslogtreecommitdiffstats
path: root/lib/oe/patch.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/oe/patch.py')
-rw-r--r--lib/oe/patch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/oe/patch.py b/lib/oe/patch.py
index d153a0cd4a..085842dca3 100644
--- a/lib/oe/patch.py
+++ b/lib/oe/patch.py
@@ -133,7 +133,7 @@ class GitApplyTree(PatchTree):
class QuiltTree(PatchSet):
def _runcmd(self, args, run = True):
quiltrc = bb.data.getVar('QUILTRCFILE', self.d, 1)
- cmdline = ["quilt", "--quiltrc", quiltrc] + args
+ cmdline = ["quilt", "--quiltrc=%s" % quiltrc] + args
if not run:
return subprocess.list2cmdline(cmdline)
oe.process.run(cmdline, cwd=self.dir, env=self.env)