From: Richard Purdie Date: Fri, 25 Jan 2013 12:54:49 +0000 (+0000) Subject: bitbake-diffigs: Don't pull in tinfoil unless we really need/plan to use it X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=20222f2f16130e91eed5e68286188ee0e8f8f3bf;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git bitbake-diffigs: Don't pull in tinfoil unless we really need/plan to use it This means we can run in parallel with other bitbake processed we're not in task mode. Signed-off-by: Richard Purdie --- diff --git a/bin/bitbake-diffsigs b/bin/bitbake-diffsigs index 62f682748b3..3ce70dabd90 100755 --- a/bin/bitbake-diffsigs +++ b/bin/bitbake-diffsigs @@ -85,8 +85,8 @@ options, args = parser.parse_args(sys.argv) if len(args) == 1: parser.print_help() else: - tinfoil = bb.tinfoil.Tinfoil() if options.taskmode: + tinfoil = bb.tinfoil.Tinfoil() if len(args) < 3: logger.error("Please specify a recipe and task name") sys.exit(1)