Explorar o código

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>
Valentin Popa %!s(int64=12) %!d(string=hai) anos
pai
achega
888d1f35ee
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      bitbake/bin/bitbake-worker

+ 1 - 0
bitbake/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":