From e440b93fea60bcaac84d19e8d99561f73f0bc023 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Wed, 8 Dec 2004 22:54:02 +0000 Subject: Update bitbake command usage information: s/bbmake/bitmake/g, and remove the incorrect info about what packages are built by default (thanks to phil for spotting it). --- bin/bitbake | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'bin') diff --git a/bin/bitbake b/bin/bitbake index c072ce467..93f08167a 100755 --- a/bin/bitbake +++ b/bin/bitbake @@ -52,7 +52,6 @@ def handle_options( args ): Executes the specified task (default is 'build') for a given set of BitBake files. It expects that BBFILES is defined, which is a space seperated list of files to be executed. BBFILES does support wildcards. -Default packages to be executed are all packages in BBFILES. Default BBFILES are the .bb files in the current directory.""" ) parser.add_option( "-b", "--buildfile", help = "execute the task against this .bb file, rather than a package from BBFILES.", @@ -498,7 +497,7 @@ def build_depgraph(): if bbdebug == 0: sys.stdout.write("\n") - # Build package list for "bbmake world" + # Build package list for "bitbake world" bb.debug(1, "BBMAKE collating packages for \"world\"") for f in make.pkgdata.keys(): d = make.pkgdata[f] @@ -657,7 +656,7 @@ if __name__ == "__main__": if bbpkgs: pkgs_to_build = bbpkgs.split() if not pkgs_to_build and not make.options.show_versions: - print "Nothing to build. Use 'bbmake world' to build everything." + print "Nothing to build. Use 'bitbake world' to build everything." sys.exit(0) -- cgit 1.2.3-korg