summaryrefslogtreecommitdiffstats
path: root/bin/bitbake-worker
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:47:55 +0100
commitc2ed639690f135994199eb24d964e37f57259e3a (patch)
treedcce0717035532ebb773dcd21e3808b928ae91d9 /bin/bitbake-worker
parent2cd2d0a48e12ab4358fb967eaf7a56c17993f48d (diff)
downloadbitbake-contrib-c2ed639690f135994199eb24d964e37f57259e3a.tar.gz
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] Signed-off-by: Valentin Popa <valentin.popa@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bin/bitbake-worker')
-rwxr-xr-xbin/bitbake-worker1
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/bitbake-worker b/bin/bitbake-worker
index 6580078af..b438d98dc 100755
--- a/bin/bitbake-worker
+++ b/bin/bitbake-worker
@@ -9,6 +9,7 @@ import logging
import bb
import select
import errno
+import signal
# Users shouldn't be running this code directly
if len(sys.argv) != 2 or sys.argv[1] != "decafbad":