git.openpandora.org
/
openembedded.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
86b8a0f
)
oe.patch: use --quiltrc= instead of --quiltrc
author
Chris Larson
<chris_larson@mentor.com>
Sat, 23 Oct 2010 21:40:46 +0000
(14:40 -0700)
committer
Chris 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
patch
|
blob
|
history
diff --git
a/lib/oe/patch.py
b/lib/oe/patch.py
index
d153a0c
..
085842d
100644
(file)
--- 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)