From 03679364a9e280af24ba7038dce54272eb33af83 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 5 Jan 2011 00:49:57 +0000 Subject: bitbake: Fix process.py to accept None as the log option Signed-off-by: Richard Purdie --- bitbake/lib/bb/process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake/lib/bb/process.py') diff --git a/bitbake/lib/bb/process.py b/bitbake/lib/bb/process.py index 0e19cbe8de..fd7f28d7a0 100644 --- a/bitbake/lib/bb/process.py +++ b/bitbake/lib/bb/process.py @@ -92,7 +92,7 @@ def run(cmd, input=None, **options): options["shell"] = True log = options.get('log') - if log: + if 'log' in options: del options['log'] try: -- cgit v1.2.3-54-g00ecf