diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-01-25 12:54:49 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-01-25 12:58:35 +0000 |
commit | ff72823d4089fe9a47edb5c3f74eed39360db0e3 (patch) | |
tree | 710b67b75ea4bb2b558986e3adacf1f847661e4f /bitbake/bin | |
parent | 34b415842d94dd3f12872758ab8b9cbc4ebdc26a (diff) | |
download | poky-ff72823d4089fe9a47edb5c3f74eed39360db0e3.tar.gz |
bitbake: 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.
(Bitbake rev: 20222f2f16130e91eed5e68286188ee0e8f8f3bf)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-x | bitbake/bin/bitbake-diffsigs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/bin/bitbake-diffsigs b/bitbake/bin/bitbake-diffsigs index 62f682748b..3ce70dabd9 100755 --- a/bitbake/bin/bitbake-diffsigs +++ b/bitbake/bin/bitbake-diffsigs | |||
@@ -85,8 +85,8 @@ options, args = parser.parse_args(sys.argv) | |||
85 | if len(args) == 1: | 85 | if len(args) == 1: |
86 | parser.print_help() | 86 | parser.print_help() |
87 | else: | 87 | else: |
88 | tinfoil = bb.tinfoil.Tinfoil() | ||
89 | if options.taskmode: | 88 | if options.taskmode: |
89 | tinfoil = bb.tinfoil.Tinfoil() | ||
90 | if len(args) < 3: | 90 | if len(args) < 3: |
91 | logger.error("Please specify a recipe and task name") | 91 | logger.error("Please specify a recipe and task name") |
92 | sys.exit(1) | 92 | sys.exit(1) |