summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/main.py')
-rwxr-xr-xbitbake/lib/bb/main.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/bitbake/lib/bb/main.py b/bitbake/lib/bb/main.py
index 2019d5014b..49dc8d5b59 100755
--- a/bitbake/lib/bb/main.py
+++ b/bitbake/lib/bb/main.py
@@ -36,7 +36,6 @@ from bb import ui
36from bb import server 36from bb import server
37from bb import cookerdata 37from bb import cookerdata
38 38
39__version__ = "1.27.0"
40logger = logging.getLogger("BitBake") 39logger = logging.getLogger("BitBake")
41 40
42class BBMainException(Exception): 41class BBMainException(Exception):
@@ -83,7 +82,7 @@ class BitBakeConfigParameters(cookerdata.ConfigParameters):
83 82
84 def parseCommandLine(self, argv=sys.argv): 83 def parseCommandLine(self, argv=sys.argv):
85 parser = optparse.OptionParser( 84 parser = optparse.OptionParser(
86 version = "BitBake Build Tool Core version %s, %%prog version %s" % (bb.__version__, __version__), 85 version = "BitBake Build Tool Core version %s" % bb.__version__,
87 usage = """%prog [options] [recipename/target ...] 86 usage = """%prog [options] [recipename/target ...]
88 87
89 Executes the specified task (default is 'build') for a given set of target recipes (.bb files). 88 Executes the specified task (default is 'build') for a given set of target recipes (.bb files).