summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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