From 5a226f7e3c1e8de8a1aec174ff946b8352d338bc Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Wed, 16 Sep 2015 09:31:41 -0700 Subject: [PATCH] dev-manual: Changed multilib example Fixes [YOCTO #8256] The suggested multilib example in the "Using Multilib" section was broken. I replaced the lib32-connman library with the lib32-glib-2.0 library. (From yocto-docs rev: fa302dd1b7d71c880815fdc4b9a6764c095d476d) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- documentation/dev-manual/dev-manual-common-tasks.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml index e927a89bee..59f8caa687 100644 --- a/documentation/dev-manual/dev-manual-common-tasks.xml +++ b/documentation/dev-manual/dev-manual-common-tasks.xml @@ -3554,7 +3554,7 @@ require conf/multilib.conf MULTILIBS = "multilib:lib32" DEFAULTTUNE_virtclass-multilib-lib32 = "x86" - IMAGE_INSTALL = "lib32-connman" + IMAGE_INSTALL = "lib32-glib-2.0" This example enables an additional library named lib32 alongside the @@ -3565,7 +3565,7 @@ - The example then includes lib32-connman + The example then includes lib32-glib-2.0 in all the images, which illustrates one method of including a multiple library dependency. You can use a normal image build to include this dependency, @@ -3575,7 +3575,7 @@ You can also build Multilib packages specifically with a command like this: - $ bitbake lib32-connman + $ bitbake lib32-glib-2.0