diff options
author | Ross Burton <ross@openedhand.com> | 2007-06-02 17:05:42 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2007-06-02 17:05:42 +0000 |
commit | 98b1165d9a70d26983250c3bf1d841afab9e9fd0 (patch) | |
tree | cf4c4ddc877c67048988078ade31d2fcf34c8399 /scripts/poky-env-internal | |
parent | 030f86e0a45c99e2bfa4ecdf7d17e5c90715e252 (diff) | |
download | poky-98b1165d9a70d26983250c3bf1d841afab9e9fd0.tar.gz |
Unset PYTHONPATH otherwise Python really breaks
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1848 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'scripts/poky-env-internal')
-rwxr-xr-x | scripts/poky-env-internal | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/poky-env-internal b/scripts/poky-env-internal index b5052e7115..b1e5546bba 100755 --- a/scripts/poky-env-internal +++ b/scripts/poky-env-internal | |||
@@ -70,6 +70,9 @@ unset LD_LIBRARY_PATH | |||
70 | export PATH LD_LIBRARY_PATH OEROOT | 70 | export PATH LD_LIBRARY_PATH OEROOT |
71 | # Stop multi byte characters breaking the patcher stuff - This is for Redhat / Fedora people really | 71 | # Stop multi byte characters breaking the patcher stuff - This is for Redhat / Fedora people really |
72 | export LANG=C | 72 | export LANG=C |
73 | # Kill PYTHONPATH as otherwise the Python specified there will conflict with | ||
74 | # python-native. | ||
75 | unset PYTHONPATH | ||
73 | 76 | ||
74 | echo | 77 | echo |
75 | echo "### Shell environment set up for Poky builds. ###" | 78 | echo "### Shell environment set up for Poky builds. ###" |