aboutsummaryrefslogtreecommitdiffstats
path: root/conf/collections.inc
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2010-02-15 11:49:35 +0100
committerKoen Kooi <koen@openembedded.org>2010-02-15 11:49:35 +0100
commitfd4a161b6095f5b6f83d50d4d979000399944260 (patch)
tree686d6859befeb55c13a4b1474fc9bd01a28488f9 /conf/collections.inc
parentfeb019622e464739efe440ecabc2f9e5b5477682 (diff)
downloadopenembedded-fd4a161b6095f5b6f83d50d4d979000399944260.tar.gz
collections.inc: comment out python statement that inject PYTHONPATH into the global environment
Diffstat (limited to 'conf/collections.inc')
-rw-r--r--conf/collections.inc4
1 files changed, 3 insertions, 1 deletions
diff --git a/conf/collections.inc b/conf/collections.inc
index 831ca935e6..6a0f41fd78 100644
--- a/conf/collections.inc
+++ b/conf/collections.inc
@@ -166,7 +166,9 @@ def collections_setup(d):
import sys
bb.debug(1, "Re-executing bitbake with BBPATH of %s" % d.getVar("BBPATH", 0))
os.environ["BBPATH"] = d.getVar("BBPATH", 0)
- os.environ["PYTHONPATH"] = ":".join(sys.path)
+ # FIXME: This exports a bogus PYTHONPATH to OE recipes resulting in massive breakages:
+ # http://thread.gmane.org/gmane.comp.handhelds.openembedded/30163
+ # os.environ["PYTHONPATH"] = ":".join(sys.path)
sys.argv.insert(0, sys.executable)
os.execvpe(sys.executable, sys.argv, os.environ)