From 0d1c86b558105f8101776d72c6e8131cce358551 Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Fri, 18 Sep 2015 07:57:45 -0700 Subject: ref-manual: Updated EXCLUDE_FROM_SHLIBS description. Fixes [YOCTO #8066] Applied some review edits to the variable's description in the glossary. Also, changed the name of the variable to be correct. (From yocto-docs rev: f3ab503301db9d22cb85da0f7518d266f230bd3d) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- documentation/ref-manual/ref-variables.xml | 35 +++++++++++------------------- 1 file changed, 13 insertions(+), 22 deletions(-) (limited to 'documentation') diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml index 43715da5d8..fd13746a81 100644 --- a/documentation/ref-manual/ref-variables.xml +++ b/documentation/ref-manual/ref-variables.xml @@ -3533,40 +3533,31 @@ - EXCLUDE_FROM_SHLIB + EXCLUDE_FROM_SHLIBS - EXCLUDE_FROM_SHLIB[doc] = "Prevents exposure of a package to all of the package's libraries." + EXCLUDE_FROM_SHLIBS[doc] = "Causes the OpenEmbedded build system's shared resolver to exclued an entire package when scanning for shared libraries." - Prevents exposing a package to all of the package's - libraries. - The EXCLUDE_FROM_SHLIB variable is - useful for prebuilt packages that should not be exposed - to any of the package's libraries. - In other words, you want to skip the - shlib procedure for the package. + Triggers the OpenEmbedded build system's shared resolver to + exclude an entire package when scanning for shared + libraries (i.e. the shlib procedure. + The EXCLUDE_FROM_SHLIBS variable is + similar to the + PRIVATE_LIBS + variable, which exludes a package's particular libraries + only and not the whole package. - Use the variable by setting it to "1" for a particular - package: + Use the + EXCLUDE_FROM_SHLIBS variable by + setting it to "1" for a particular package: EXCLUDE_FROM_SHLIB = "1" - - - You can achieve similar results by using the - PRIVATE_LIBS - variable. - However, with the PRIVATE_LIBS - variable, you must specifically list all of a package's - libraries. - Using the EXCLUDE_FROM_SHLIB variable, - allows you to quickly prevent exposure to all the libraries. - -- cgit 1.2.3-korg