From: Richard Purdie Date: Wed, 1 May 2019 22:06:53 +0000 (+0100) Subject: bitbake: build: Disable warning about dependent tasks for now X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a85601aae19edf8db729a9d18ef1672fc6e95e98;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 --- diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py index 8ad9f5de2a3..a228b05ddd6 100644 --- a/bitbake/lib/bb/build.py +++ b/bitbake/lib/bb/build.py @@ -818,8 +818,8 @@ def add_tasks(tasklist, d): 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 for %s does not exist' % (d.getVar('PN'), dep, task)) + #if not dep in tasklist: + # bb.warn('%s: dependent task %s for %s does not exist' % (d.getVar('PN'), dep, task)) dep = d.expand(dep) task_deps['parents'][task].append(dep) diff --git a/bitbake/lib/bb/tests/parse.py b/bitbake/lib/bb/tests/parse.py index aa7adc40f27..747fc35fc29 100644 --- a/bitbake/lib/bb/tests/parse.py +++ b/bitbake/lib/bb/tests/parse.py @@ -203,5 +203,5 @@ deltask do_fetch do_patch self.assertTrue("addtask contained multiple 'after' keywords" in stdout) self.assertTrue('addtask ignored: " do_patch"' in stdout) self.assertTrue('deltask ignored: " do_patch"' in stdout) - self.assertTrue('dependent task do_foo for do_patch does not exist' in stdout) + #self.assertTrue('dependent task do_foo for do_patch does not exist' in stdout)