summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cookerdata.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2015-09-29 14:07:59 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-10-01 07:43:38 +0100
commit40fae3260c0b4772dfbbf5a6dae57048fbeb572c (patch)
treede76adf927a099cf4881b76209d81f7d05430012 /bitbake/lib/bb/cookerdata.py
parent1e467b333fe164a71404f3e3f6974440ce00e90f (diff)
downloadpoky-40fae3260c0b4772dfbbf5a6dae57048fbeb572c.tar.gz
bitbake: cookerdata: Rename BBPKGS -> BBTARGETS
BBPKGS is a confusing name from before we tried to straighten out our terminology. Its also a mostly unknown variable that isn't in wide use. I've been asked about it recently and before people start relying more heavily on it, I'd like to rename it BBTARGETS which better describes what it does. Its not currently in the manuals, I'd prefer to document it under the better name. I've not provided any migration path for the variable since I believe its unused currently. It allows the targets to built to be specified from a conf file in addition to those on the commandline. (Bitbake rev: f60c6a2172bceeb5682dcb738a02c4bf26176566) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/cookerdata.py')
-rw-r--r--bitbake/lib/bb/cookerdata.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/cookerdata.py b/bitbake/lib/bb/cookerdata.py
index f19c283884..a3fa55256d 100644
--- a/bitbake/lib/bb/cookerdata.py
+++ b/bitbake/lib/bb/cookerdata.py
@@ -63,9 +63,9 @@ class ConfigParameters(object):
63 raise Exception("Unable to set configuration option 'cmd' on the server: %s" % error) 63 raise Exception("Unable to set configuration option 'cmd' on the server: %s" % error)
64 64
65 if not self.options.pkgs_to_build: 65 if not self.options.pkgs_to_build:
66 bbpkgs, error = server.runCommand(["getVariable", "BBPKGS"]) 66 bbpkgs, error = server.runCommand(["getVariable", "BBTARGETS"])
67 if error: 67 if error:
68 raise Exception("Unable to get the value of BBPKGS from the server: %s" % error) 68 raise Exception("Unable to get the value of BBTARGETS from the server: %s" % error)
69 if bbpkgs: 69 if bbpkgs:
70 self.options.pkgs_to_build.extend(bbpkgs.split()) 70 self.options.pkgs_to_build.extend(bbpkgs.split())
71 71