[oe-commits] Chris Larson : oe.patch: use --quiltrc= instead of --quiltrc

git version control git at git.openembedded.org
Sat Oct 23 21:44:43 UTC 2010


Module: openembedded.git
Branch: master
Commit: 54ca785343126e26af2b5d5200528e08bf805c81
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=54ca785343126e26af2b5d5200528e08bf805c81

Author: Chris Larson <chris_larson at mentor.com>
Date:   Sat Oct 23 14:40:46 2010 -0700

oe.patch: use --quiltrc= instead of --quiltrc

Signed-off-by: Chris Larson <chris_larson at mentor.com>

---

 lib/oe/patch.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lib/oe/patch.py b/lib/oe/patch.py
index d153a0c..085842d 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)





More information about the Openembedded-commits mailing list