summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/build.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2019-05-01 23:06:53 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-05-01 23:09:08 +0100
commita85601aae19edf8db729a9d18ef1672fc6e95e98 (patch)
treef9c6a570337806157ce48af13b1519caa577d1b0 /bitbake/lib/bb/build.py
parentdabc5ae13ac34c4c3c45f5203c5fcff21cbaa864 (diff)
downloadpoky-a85601aae19edf8db729a9d18ef1672fc6e95e98.tar.gz
bitbake: build: Disable warning about dependent tasks for now
This breaks with rm_work so disable the warning until we find a better solution (and change the test accordingly too). (Bitbake rev: 93e94c06baf013e3d072465a55bddd1fe61c0772) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/build.py')
-rw-r--r--bitbake/lib/bb/build.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py
index 8ad9f5de2a..a228b05ddd 100644
--- a/bitbake/lib/bb/build.py
+++ b/bitbake/lib/bb/build.py
@@ -818,8 +818,8 @@ def add_tasks(tasklist, d):
818 if 'deps' in flags: 818 if 'deps' in flags:
819 for dep in flags['deps']: 819 for dep in flags['deps']:
820 # Check and warn for "addtask task after foo" while foo does not exist 820 # Check and warn for "addtask task after foo" while foo does not exist
821 if not dep in tasklist: 821 #if not dep in tasklist:
822 bb.warn('%s: dependent task %s for %s does not exist' % (d.getVar('PN'), dep, task)) 822 # bb.warn('%s: dependent task %s for %s does not exist' % (d.getVar('PN'), dep, task))
823 dep = d.expand(dep) 823 dep = d.expand(dep)
824 task_deps['parents'][task].append(dep) 824 task_deps['parents'][task].append(dep)
825 825