summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/process.py
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-12-13 15:58:15 -0700
committerRichard Purdie <rpurdie@linux.intel.com>2011-01-04 14:46:50 +0000
commite05d6fa92792829e9bb1d77a4d5edb5382e68ff0 (patch)
tree815451c7379db9ee3a0eeb3ad34454103bd8ab08 /bitbake/lib/bb/process.py
parent2b7c2a842092fcec1389bc234bec2ef8c3c5973a (diff)
downloadpoky-e05d6fa92792829e9bb1d77a4d5edb5382e68ff0.tar.gz
build: set PWD in the subprocess preexec hook
(Bitbake rev: efa5485c8f9d488ba058c40734cc55296d3de6eb) Signed-off-by: Chris Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/process.py')
-rw-r--r--bitbake/lib/bb/process.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/bitbake/lib/bb/process.py b/bitbake/lib/bb/process.py
index b022e4c8f9..1c790658c9 100644
--- a/bitbake/lib/bb/process.py
+++ b/bitbake/lib/bb/process.py
@@ -1,14 +1,15 @@
1import subprocess 1import os
2import signal
3import logging 2import logging
3import signal
4import subprocess
4 5
5logger = logging.getLogger('BitBake.Process') 6logger = logging.getLogger('BitBake.Process')
6 7
7def subprocess_setup(): 8def subprocess_setup():
8 # Python installs a SIGPIPE handler by default. This is usually not what 9 # Python installs a SIGPIPE handler by default. This is usually not what
9 # non-Python subprocesses expect. 10 # non-Python subprocesses expect.
10 print('in preexec hook')
11 signal.signal(signal.SIGPIPE, signal.SIG_DFL) 11 signal.signal(signal.SIGPIPE, signal.SIG_DFL)
12 os.environ['PWD'] = os.getcwd()
12 13
13class CmdError(RuntimeError): 14class CmdError(RuntimeError):
14 def __init__(self, command): 15 def __init__(self, command):