diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-21 17:26:18 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-21 17:26:18 +0000 |
commit | 4b6de47e731357ee31ac0f2af79bff7ed93c3736 (patch) | |
tree | 5a3eda222c482c815254c6dd047308d1768b85a7 | |
parent | ac7aa9499aab70a54646d7c876a516b200e5c386 (diff) | |
download | poky-4b6de47e731357ee31ac0f2af79bff7ed93c3736.tar.gz |
bitbake/runqueue: Drop PATH override. This was needed for the exec() change but not now we use fork()
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index f61e913b9e..172e591522 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -1076,8 +1076,6 @@ class RunQueueExecute: | |||
1076 | bb.mkdirhier(p) | 1076 | bb.mkdirhier(p) |
1077 | logger.debug(2, "Running %s:%s under fakeroot, state dir is %s" % (fn, taskname, fakedirs)) | 1077 | logger.debug(2, "Running %s:%s under fakeroot, state dir is %s" % (fn, taskname, fakedirs)) |
1078 | 1078 | ||
1079 | env['PATH'] = self.cooker.configuration.initial_path | ||
1080 | |||
1081 | envbackup = os.environ.copy() | 1079 | envbackup = os.environ.copy() |
1082 | for e in envbackup: | 1080 | for e in envbackup: |
1083 | os.unsetenv(e) | 1081 | os.unsetenv(e) |