aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-10-23 14:40:46 -0700
committerChris Larson <chris_larson@mentor.com>2010-10-23 14:40:46 -0700
commit54ca785343126e26af2b5d5200528e08bf805c81 (patch)
tree8ce98ca5c5d1240afc433c698f3072a1145b49b0 /lib
parent86b8a0f373b899b4a82ce85e9dbe5a54be5446f0 (diff)
downloadopenembedded-54ca785343126e26af2b5d5200528e08bf805c81.tar.gz
oe.patch: use --quiltrc= instead of --quiltrc
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'lib')
-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)