oe.patch: use --quiltrc= instead of --quiltrc
authorChris Larson <chris_larson@mentor.com>
Sat, 23 Oct 2010 21:40:46 +0000 (14:40 -0700)
committerChris Larson <chris_larson@mentor.com>
Sat, 23 Oct 2010 21:40:46 +0000 (14:40 -0700)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
lib/oe/patch.py

index d153a0c..085842d 100644 (file)
@@ -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)