]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
bitbake: build.py: check dependendent task for addtask
authorRobert Yang <liezhi.yang@windriver.com>
Mon, 29 Apr 2019 08:11:59 +0000 (16:11 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 30 Apr 2019 11:05:24 +0000 (12:05 +0100)
The following command is incorrect, but was ignored silently, that may suprise
users:

addtask task after task_not_existed

This patch can check and warn for it. It would be better to also check "before"
tasks, but there is no easier way to do it.

[YOCTO #13282]

(Bitbake rev: b1ad36169c2ad189d84c53c707b66c12d5ff812f)

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
bitbake/lib/bb/build.py

index 7571421d71b2be954a3c58e2211e1a1b21a6b582..a83de8d73ef0debc4a40696e888f0f4ea6e34485 100644 (file)
@@ -815,6 +815,9 @@ def add_tasks(tasklist, d):
         task_deps['parents'][task] = []
         if 'deps' in flags:
             for dep in flags['deps']:
+                # Check and warn for "addtask task after foo" while foo does not exist
+                if not dep in tasklist:
+                    bb.warn('%s: dependent task %s does not exist' % (d.getVar('PN'), dep))
                 dep = d.expand(dep)
                 task_deps['parents'][task].append(dep)