diff options
-rw-r--r-- | lib/bb/cookerdata.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bb/cookerdata.py b/lib/bb/cookerdata.py index f19c2838..a3fa5525 100644 --- a/lib/bb/cookerdata.py +++ b/lib/bb/cookerdata.py @@ -63,9 +63,9 @@ class ConfigParameters(object): raise Exception("Unable to set configuration option 'cmd' on the server: %s" % error) if not self.options.pkgs_to_build: - bbpkgs, error = server.runCommand(["getVariable", "BBPKGS"]) + bbpkgs, error = server.runCommand(["getVariable", "BBTARGETS"]) if error: - raise Exception("Unable to get the value of BBPKGS from the server: %s" % error) + raise Exception("Unable to get the value of BBTARGETS from the server: %s" % error) if bbpkgs: self.options.pkgs_to_build.extend(bbpkgs.split()) |