diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-08-17 12:12:16 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-08-19 18:05:44 +0100 |
commit | 715d857174ceca82b85d6c8c7df520047ba7fb0c (patch) | |
tree | 363aac81a06b013471f1dede8ba4c0dc7d8bbe92 /bitbake/lib/bb/ui | |
parent | 22a653d02880c35d3c9d04811c31aabdf1e69951 (diff) | |
download | poky-715d857174ceca82b85d6c8c7df520047ba7fb0c.tar.gz |
bitbake: Fix default function parameter assignment to a list
With python you should not assign a list as the default value of a
function parameter - because a list is mutable, the result will be that
the first time a value is passed it will actually modify the default.
Reference:
http://docs.python-guide.org/en/latest/writing/gotchas/#mutable-default-arguments
(Bitbake rev: 7859f7388f2e3f675d0e1527cfde18625f36f637)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui')
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/hobeventhandler.py | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py index 43edb70b08..b71fb33d30 100644 --- a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py +++ b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py | |||
@@ -440,11 +440,17 @@ class HobHandler(gobject.GObject): | |||
440 | self.commands_async.append(self.SUB_BUILD_RECIPES) | 440 | self.commands_async.append(self.SUB_BUILD_RECIPES) |
441 | self.run_next_command(self.GENERATE_PACKAGES) | 441 | self.run_next_command(self.GENERATE_PACKAGES) |
442 | 442 | ||
443 | def generate_image(self, image, base_image, image_packages=[], toolchain_packages=[], default_task="build"): | 443 | def generate_image(self, image, base_image, image_packages=None, toolchain_packages=None, default_task="build"): |
444 | self.image = image | 444 | self.image = image |
445 | self.base_image = base_image | 445 | self.base_image = base_image |
446 | self.package_queue = image_packages | 446 | if image_packages: |
447 | self.toolchain_packages = toolchain_packages | 447 | self.package_queue = image_packages |
448 | else: | ||
449 | self.package_queue = [] | ||
450 | if toolchain_packages: | ||
451 | self.toolchain_packages = toolchain_packages | ||
452 | else: | ||
453 | self.toolchain_packages = [] | ||
448 | self.default_task = default_task | 454 | self.default_task = default_task |
449 | self.runCommand(["setPrePostConfFiles", "conf/.hob.conf", ""]) | 455 | self.runCommand(["setPrePostConfFiles", "conf/.hob.conf", ""]) |
450 | self.commands_async.append(self.SUB_PARSE_CONFIG) | 456 | self.commands_async.append(self.SUB_PARSE_CONFIG) |