From: Chris Larson Date: Sat, 23 Oct 2010 21:40:46 +0000 (-0700) Subject: oe.patch: use --quiltrc= instead of --quiltrc X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=54ca785343126e26af2b5d5200528e08bf805c81;p=openembedded.git oe.patch: use --quiltrc= instead of --quiltrc Signed-off-by: Chris Larson --- 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)