[oe-commits] [meta-openembedded] 02/11: rrdtool: suppress appending of installation to perllocal.pod

git at git.openembedded.org git at git.openembedded.org
Mon Sep 23 15:33:25 UTC 2019


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

khem pushed a commit to branch master-next
in repository meta-openembedded.

commit 5624727547ea8217f5c68f69ff08543a2fc3fa4d
Author: Naveen Saini <naveen.kumar.saini at intel.com>
AuthorDate: Mon Sep 23 10:18:32 2019 +0800

    rrdtool: suppress appending of installation to perllocal.pod
    
    perl modules when gets installed can produce a perllocal.pod
    file for documenting a list of locally installed perl modules.
    This can conflict if multiple packages generate the file.
    
    Hits the conflict with apparmor & rrdtool packages.
    Error: Transaction check error:
      file /usr/lib/perl5/5.30.0/x86_64-linux/perllocal.pod conflicts between attempted installs of rrdtool-1.7.2-r0.corei7_64 and apparmor-2.13.3-r0.corei7_64
    
    perllocal.pod files are for documentation purpose, so
    disabling does not harm. Generating perllocal.pod for perl
    module is disabled by passing NO_PERLLOCAL=1
    with ExtUtils::MakeMaker utility.
    
    https://perldoc.perl.org/5.30.0/ExtUtils/MakeMaker.html#Using-Attributes-and-Parameters
    
    [YOCTO #13491]
    
    Signed-off-by: Naveen Saini <naveen.kumar.saini at intel.com>
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 meta-oe/recipes-extended/rrdtool/rrdtool_1.7.2.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-extended/rrdtool/rrdtool_1.7.2.bb b/meta-oe/recipes-extended/rrdtool/rrdtool_1.7.2.bb
index 1962a2d..b39ceda 100644
--- a/meta-oe/recipes-extended/rrdtool/rrdtool_1.7.2.bb
+++ b/meta-oe/recipes-extended/rrdtool/rrdtool_1.7.2.bb
@@ -32,7 +32,7 @@ am_cv_python_pyexecdir=${STAGING_LIBDIR}/python${PYTHON_BASEVERSION}/site-packag
 --disable-python,python,"
 
 PACKAGECONFIG[perl] = \
-"--enable-perl=yes --with-perl-options='INSTALLDIRS="vendor" CCFLAGS="${CFLAGS}" NO_PACKLIST=1' \
+"--enable-perl=yes --with-perl-options='INSTALLDIRS="vendor" CCFLAGS="${CFLAGS}" NO_PACKLIST=1 NO_PERLLOCAL=1' \
 ac_cv_path_PERL_CC='${CC}',  \
 --disable-perl,perl,"
 

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


More information about the Openembedded-commits mailing list