diff options
author | Valentin Popa <valentin.popa@intel.com> | 2013-07-30 08:27:28 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-07-31 06:59:59 +0100 |
commit | 888d1f35ee19665741bf3a78627cf2a8d3d6824b (patch) | |
tree | 24b8545ff568d41392f57ce9e719aa13cde3e9af /bitbake | |
parent | d45486eb1c41daeaa3947750b89cb83f59712548 (diff) | |
download | poky-888d1f35ee19665741bf3a78627cf2a8d3d6824b.tar.gz |
bitbake: bitbake-worker: import needed signal module
bitbake-worker makes use of the signal module
but it doesn't import it. This patch fixes the issue.
[YOCTO #4750]
(Bitbake rev: c2ed639690f135994199eb24d964e37f57259e3a)
Signed-off-by: Valentin Popa <valentin.popa@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rwxr-xr-x | bitbake/bin/bitbake-worker | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/bin/bitbake-worker b/bitbake/bin/bitbake-worker index 6580078aff..b438d98dc9 100755 --- a/bitbake/bin/bitbake-worker +++ b/bitbake/bin/bitbake-worker | |||
@@ -9,6 +9,7 @@ import logging | |||
9 | import bb | 9 | import bb |
10 | import select | 10 | import select |
11 | import errno | 11 | import errno |
12 | import signal | ||
12 | 13 | ||
13 | # Users shouldn't be running this code directly | 14 | # Users shouldn't be running this code directly |
14 | if len(sys.argv) != 2 or sys.argv[1] != "decafbad": | 15 | if len(sys.argv) != 2 or sys.argv[1] != "decafbad": |