[oe-commits] [bitbake] 02/02: build: Disable warning about dependent tasks for now

git at git.openembedded.org git at git.openembedded.org
Wed May 1 22:11:45 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository bitbake.

commit 93e94c06baf013e3d072465a55bddd1fe61c0772
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Wed May 1 23:06:53 2019 +0100

    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).
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/build.py       | 4 ++--
 lib/bb/tests/parse.py | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/bb/build.py b/lib/bb/build.py
index 8ad9f5d..a228b05 100644
--- a/lib/bb/build.py
+++ b/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/lib/bb/tests/parse.py b/lib/bb/tests/parse.py
index aa7adc4..747fc35 100644
--- a/lib/bb/tests/parse.py
+++ b/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)
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list