summaryrefslogtreecommitdiffstats
path: root/bitbake/bin/bitbake
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-11-26 10:08:05 -0700
committerRichard Purdie <rpurdie@linux.intel.com>2011-01-04 14:46:45 +0000
commit6810622484f9ab0df878717c0d2fa64271a794dc (patch)
tree0b014da18c70840b8f501c700e3d7af9ca89aa8e /bitbake/bin/bitbake
parent8a938d567f4439e114e50d93edc3c72a55f7b4d8 (diff)
downloadpoky-6810622484f9ab0df878717c0d2fa64271a794dc.tar.gz
Use __file__, not sys.argv[0]
(Bitbake rev: 97e92abe49663eee189c89c1dc91fe69891faf73) Signed-off-by: Chris Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/bin/bitbake')
-rwxr-xr-xbitbake/bin/bitbake2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake
index e6ce8d9438..5338868425 100755
--- a/bitbake/bin/bitbake
+++ b/bitbake/bin/bitbake
@@ -24,7 +24,7 @@
24 24
25import os 25import os
26import sys, logging 26import sys, logging
27sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(sys.argv[0])), 27sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(__file__)),
28 'lib')) 28 'lib'))
29 29
30import optparse 30import optparse