[oe-commits] [meta-openembedded] 11/12: net-snmp: fix the invalid -fdebug-prefix-map

git at git.openembedded.org git at git.openembedded.org
Mon Feb 5 16:04:41 UTC 2018


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

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

commit a14265678f9e3ae397d3fff9e453e6105dc66d48
Author: Yu Mingli <mingli.yu at windriver.com>
AuthorDate: Sun Jan 21 22:47:41 2018 -0800

    net-snmp: fix the invalid -fdebug-prefix-map
    
    The previous path value to -fdebug-prefix-map
    is null which may result in other package such as
    quagga do_config error as below:
    
    ====================================================
    add DISTRO_FEATURES_append = " snmp" to conf/local.conf
    test at buildserver@ bitbake quagga
    | checking for i586-poky-linux-net-snmp-config... no
    | checking for net-snmp-config... $Prj/tmp/work/i586-poky-linux/quagga/1.2.1-r0/recipe-sysroot/usr/bin/crossscripts/net-snmp-config
    | checking whether we can link to Net-SNMP... no
    | configure: error: --enable-snmp given but not usable
    | NOTE: The following config.log files may provide further information.
    | NOTE: $Prj/tmp/work/i586-poky-linux/quagga/1.2.1-r0/build/config.log
    | ERROR: configure failed
    | WARNING: $Prj/tmp/work/i586-poky-linux/quagga/1.2.1-r0/temp/run.do_configure.80493:1 exit 1 from 'exit 1'
    | ERROR: Function failed: do_configure (log file is located at $Prj/tmp/work/i586-poky-linux/quagga/1.2.1-r0/temp/log.do_configure.80493)
    ====================================================
    
    Signed-off-by: Yu Mingli <mingli.yu at windriver.com>
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
    Signed-off-by: Joe MacDonald <joe_macdonald at mentor.com>
---
 meta-networking/recipes-protocols/net-snmp/net-snmp_5.7.3.bb | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/meta-networking/recipes-protocols/net-snmp/net-snmp_5.7.3.bb b/meta-networking/recipes-protocols/net-snmp/net-snmp_5.7.3.bb
index 2f1b0bf..5a7773e 100644
--- a/meta-networking/recipes-protocols/net-snmp/net-snmp_5.7.3.bb
+++ b/meta-networking/recipes-protocols/net-snmp/net-snmp_5.7.3.bb
@@ -151,6 +151,7 @@ do_install_ptest() {
 }
 
 SYSROOT_PREPROCESS_FUNCS += "net_snmp_sysroot_preprocess"
+SNMP_DBGDIR = "/usr/src/debug/${PN}/${EXTENDPE}${PV}-${PR}"
 
 net_snmp_sysroot_preprocess () {
     if [ -e ${D}${bindir}/net-snmp-config ]; then
@@ -162,6 +163,12 @@ net_snmp_sysroot_preprocess () {
             -e "s@^includedir=.*@includedir=${STAGING_INCDIR}@g" \
             -e "s@^libdir=.*@libdir=${STAGING_LIBDIR}@g" \
             -e "s@^NSC_SRCDIR=.*@NSC_SRCDIR=${S}@g" \
+            -e "s at -fdebug-prefix-map=${SNMP_DBGDIR}@-fdebug-prefix-map=${WORKDIR}=${SNMP_DBGDIR}@g" \
+            -e "s at -fdebug-prefix-map= -fdebug-prefix-map=@-fdebug-prefix-map=${STAGING_DIR_NATIVE}= \
+                  -fdebug-prefix-map=${STAGING_DIR_HOST}=@g" \
+            -e "s at --sysroot=@--sysroot=${STAGING_DIR_HOST}@g" \
+            -e "s at --with-libtool-sysroot=@--with-libtool-sysroot=${STAGING_DIR_HOST}@g" \
+            -e "s at --with-install-prefix=@--with-install-prefix=${D}@g" \
           -i  ${SYSROOT_DESTDIR}${bindir_crossscripts}/net-snmp-config
     fi
 }

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


More information about the Openembedded-commits mailing list