diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-11-26 10:08:05 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2011-01-04 14:46:45 +0000 |
commit | 6810622484f9ab0df878717c0d2fa64271a794dc (patch) | |
tree | 0b014da18c70840b8f501c700e3d7af9ca89aa8e /bitbake | |
parent | 8a938d567f4439e114e50d93edc3c72a55f7b4d8 (diff) | |
download | openembedded-core-6810622484f9ab0df878717c0d2fa64271a794dc.tar.gz openembedded-core-6810622484f9ab0df878717c0d2fa64271a794dc.tar.bz2 openembedded-core-6810622484f9ab0df878717c0d2fa64271a794dc.zip |
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')
-rwxr-xr-x | bitbake/bin/bitbake | 2 | ||||
-rwxr-xr-x | bitbake/bin/bitdoc | 2 |
2 files changed, 2 insertions, 2 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 @@ import os import sys, logging -sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(sys.argv[0])), +sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(__file__)), 'lib')) import optparse diff --git a/bitbake/bin/bitdoc b/bitbake/bin/bitdoc index 8043b2bd1c..c2a7061d1b 100755 --- a/bitbake/bin/bitdoc +++ b/bitbake/bin/bitdoc @@ -20,7 +20,7 @@ import optparse, os, sys # bitbake -sys.path.append(os.path.join(os.path.dirname(os.path.dirname(sys.argv[0])), 'lib')) +sys.path.append(os.path.join(os.path.dirname(os.path.dirname(__file__), 'lib')) import bb import bb.parse from string import split, join |