[oe-commits] [openembedded-core] 10/10: build-recipe-list: build universe instead of world

git at git.openembedded.org git at git.openembedded.org
Mon Mar 12 22:52:17 UTC 2018


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

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 2d798f9f56fbd7cd20de4b797a476ad24c214ff3
Author: Ross Burton <ross.burton at intel.com>
AuthorDate: Mon Mar 12 16:38:58 2018 +0000

    build-recipe-list: build universe instead of world
    
    Building world means recipes that are excluded from world build for whatever
    reason get skipped from the manifests, which isn't useful.  Instead building
    universe and pass -k so that the expected dependency failures are not fatal.
    
    Signed-off-by: Ross Burton <ross.burton at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 scripts/distro/build-recipe-list.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/distro/build-recipe-list.py b/scripts/distro/build-recipe-list.py
index 407deba..3f5f7c2 100755
--- a/scripts/distro/build-recipe-list.py
+++ b/scripts/distro/build-recipe-list.py
@@ -45,7 +45,7 @@ def generate_recipe_list():
 
     # doing bitbake distrodata
     for machine in machine_list:
-        os.system('MACHINE='+ machine + ' bitbake world -c distrodata')
+        os.system('MACHINE='+ machine + ' bitbake -k universe -c distrodata')
         shutil.copy('tmp/log/distrodata.csv', 'distrodata/' + fnformat % machine)
 
     for machine in machine_list:

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


More information about the Openembedded-commits mailing list