From 54ca785343126e26af2b5d5200528e08bf805c81 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Sat, 23 Oct 2010 14:40:46 -0700 Subject: oe.patch: use --quiltrc= instead of --quiltrc Signed-off-by: Chris Larson --- lib/oe/patch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') 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) -- cgit 1.2.3-korg