summaryrefslogtreecommitdiffstats
path: root/bin/bitbake-diffsigs
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-01-25 12:54:49 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-01-25 12:57:49 +0000
commit20222f2f16130e91eed5e68286188ee0e8f8f3bf (patch)
tree49ce6d9bdf5f38f649c27cd252bf4bc1516da2db /bin/bitbake-diffsigs
parent7a31b9eac4d894c302f0e052a132c31b17d13d1f (diff)
downloadbitbake-contrib-20222f2f16130e91eed5e68286188ee0e8f8f3bf.tar.gz
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 <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bin/bitbake-diffsigs')
-rwxr-xr-xbin/bitbake-diffsigs2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bitbake-diffsigs b/bin/bitbake-diffsigs
index 62f682748..3ce70dabd 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)