diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-12-13 15:58:15 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2011-01-04 14:46:50 +0000 |
commit | e05d6fa92792829e9bb1d77a4d5edb5382e68ff0 (patch) | |
tree | 815451c7379db9ee3a0eeb3ad34454103bd8ab08 | |
parent | 2b7c2a842092fcec1389bc234bec2ef8c3c5973a (diff) | |
download | poky-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>
-rw-r--r-- | bitbake/lib/bb/process.py | 7 |
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 @@ | |||
1 | import subprocess | 1 | import os |
2 | import signal | ||
3 | import logging | 2 | import logging |
3 | import signal | ||
4 | import subprocess | ||
4 | 5 | ||
5 | logger = logging.getLogger('BitBake.Process') | 6 | logger = logging.getLogger('BitBake.Process') |
6 | 7 | ||
7 | def subprocess_setup(): | 8 | def 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 | ||
13 | class CmdError(RuntimeError): | 14 | class CmdError(RuntimeError): |
14 | def __init__(self, command): | 15 | def __init__(self, command): |