aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2006-03-05 17:09:52 +0000
committerHolger Hans Peter Freyther <zecke@selfish.org>2006-03-05 17:09:52 +0000
commit6a9052244e058ed5b3eef56bb2f65d1aca85c242 (patch)
tree39ad9ab43006f98dbac9b19928bc46bf1cd69ac4 /bin
parentc40815faf4e83d77bd7febf93edec435892357be (diff)
downloadbitbake-6a9052244e058ed5b3eef56bb2f65d1aca85c242.tar.gz
bitbake/bin/bitbake:
Prepend the lib module instead of appending to override the system installation bitbake/lib/bb/data.py: Same as above, prepend instead of append
Diffstat (limited to 'bin')
-rwxr-xr-xbin/bitbake2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bitbake b/bin/bitbake
index 3fd428a88..8ecd98ba6 100755
--- a/bin/bitbake
+++ b/bin/bitbake
@@ -22,7 +22,7 @@
# Place, Suite 330, Boston, MA 02111-1307 USA.
import sys, os, getopt, glob, copy, os.path, re, time
-sys.path.append(os.path.join(os.path.dirname(os.path.dirname(sys.argv[0])), 'lib'))
+sys.path.insert(0,os.path.join(os.path.dirname(os.path.dirname(sys.argv[0])), 'lib'))
import bb
from bb import utils, data, parse, debug, event, fatal
from sets import Set