[oe-commits] [openembedded-core] 18/19: allarch.bbclass: Exclude package_do_shlibs from do_package signature

git at git.openembedded.org git at git.openembedded.org
Wed May 9 09:48:28 UTC 2018


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

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

commit 06602d56d1d311562144eafe459fcea36931a34c
Author: Khem Raj <raj.khem at gmail.com>
AuthorDate: Sun Apr 29 12:15:14 2018 -0700

    allarch.bbclass: Exclude package_do_shlibs from do_package signature
    
    shlibs is largely useless for allarch, the particular usecase where it
    fails is when DISTRO_FEATURE is changing due to libc being different e.g.
    
    Variable package_do_shlibs value changed:
    -DISTRO_FEATURES{ldconfig} = Set
    +DISTRO_FEATURES{ldconfig} = Unset
    
    musl -> glibc or other way around 'ldconfig' gets added or deleted to
    DISTRO_FEATURE set, neither this distro feature nor the shlibs processing
    during packaging is of interest to allarch packages which are largely
    arch independent scripts
    
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 meta/classes/allarch.bbclass | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/classes/allarch.bbclass b/meta/classes/allarch.bbclass
index 51ba509..1eebe0b 100644
--- a/meta/classes/allarch.bbclass
+++ b/meta/classes/allarch.bbclass
@@ -45,6 +45,7 @@ python () {
         # These multilib values shouldn't change allarch packages so exclude them
         d.appendVarFlag("emit_pkgdata", "vardepsexclude", " MULTILIB_VARIANTS")
         d.appendVarFlag("write_specfile", "vardepsexclude", " MULTILIBS")
+        d.appendVarFlag("do_package", "vardepsexclude", " package_do_shlibs")
     elif bb.data.inherits_class('packagegroup', d) and not bb.data.inherits_class('nativesdk', d):
         bb.error("Please ensure recipe %s sets PACKAGE_ARCH before inherit packagegroup" % d.getVar("FILE"))
 }

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


More information about the Openembedded-commits mailing list