From b363fd06c81eb9bd302aff7603e0ca7a98d31bdc Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Sat, 23 Oct 2010 14:43:55 -0700 Subject: [PATCH] oe.patch: fall back to '-' for quiltrc Signed-off-by: Chris Larson --- lib/oe/patch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5