aboutsummaryrefslogtreecommitdiffstats
path: root/lib/oe/patch.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/oe/patch.py')
-rw-r--r--lib/oe/patch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/oe/patch.py b/lib/oe/patch.py
index 085842dca3..29d5102775 100644
--- a/lib/oe/patch.py
+++ b/lib/oe/patch.py
@@ -132,7 +132,7 @@ class GitApplyTree(PatchTree):
class QuiltTree(PatchSet):
def _runcmd(self, args, run = True):
- quiltrc = bb.data.getVar('QUILTRCFILE', self.d, 1)
+ quiltrc = bb.data.getVar('QUILTRCFILE', self.d, 1) or '-'
cmdline = ["quilt", "--quiltrc=%s" % quiltrc] + args
if not run:
return subprocess.list2cmdline(cmdline)