diff options
-rw-r--r-- | bitbake/lib/bb/cooker.py | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index 182d0449e6..5608845611 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
@@ -666,7 +666,37 @@ class BBCooker: | |||
666 | if not task.startswith("do_"): | 666 | if not task.startswith("do_"): |
667 | task = "do_%s" % task | 667 | task = "do_%s" % task |
668 | 668 | ||
669 | fulltargetlist = self.checkPackages(pkgs_to_build, task) | 669 | targetlist = self.checkPackages(pkgs_to_build, task) |
670 | fulltargetlist = [] | ||
671 | defaulttask_implicit = '' | ||
672 | defaulttask_explicit = False | ||
673 | wildcard = False | ||
674 | |||
675 | # Wild card expansion: | ||
676 | # Replace string such as "multiconfig:*:bash" | ||
677 | # into "multiconfig:A:bash multiconfig:B:bash bash" | ||
678 | for k in targetlist: | ||
679 | if k.startswith("multiconfig:"): | ||
680 | if wildcard: | ||
681 | bb.fatal('multiconfig conflict') | ||
682 | if k.split(":")[1] == "*": | ||
683 | wildcard = True | ||
684 | for mc in self.multiconfigs: | ||
685 | if mc: | ||
686 | fulltargetlist.append(k.replace('*', mc)) | ||
687 | # implicit default task | ||
688 | else: | ||
689 | defaulttask_implicit = k.split(":")[2] | ||
690 | else: | ||
691 | fulltargetlist.append(k) | ||
692 | else: | ||
693 | defaulttask_explicit = True | ||
694 | fulltargetlist.append(k) | ||
695 | |||
696 | if not defaulttask_explicit and defaulttask_implicit != '': | ||
697 | fulltargetlist.append(defaulttask_implicit) | ||
698 | |||
699 | bb.debug(1,"Target list: %s" % (str(fulltargetlist))) | ||
670 | taskdata = {} | 700 | taskdata = {} |
671 | localdata = {} | 701 | localdata = {} |
672 | 702 | ||