summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorValentin Popa <valentin.popa@intel.com>2013-07-30 08:27:28 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-07-31 06:59:59 +0100
commit888d1f35ee19665741bf3a78627cf2a8d3d6824b (patch)
tree24b8545ff568d41392f57ce9e719aa13cde3e9af /bitbake
parentd45486eb1c41daeaa3947750b89cb83f59712548 (diff)
downloadpoky-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-xbitbake/bin/bitbake-worker1
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
9import bb 9import bb
10import select 10import select
11import errno 11import errno
12import signal
12 13
13# Users shouldn't be running this code directly 14# Users shouldn't be running this code directly
14if len(sys.argv) != 2 or sys.argv[1] != "decafbad": 15if len(sys.argv) != 2 or sys.argv[1] != "decafbad":