diff options
author | Mingli Yu <Mingli.Yu@windriver.com> | 2018-08-13 15:30:03 +0800 |
---|---|---|
committer | Joe MacDonald <joe_macdonald@mentor.com> | 2018-08-13 14:29:11 -0400 |
commit | 12f45d8b0009b45572668682c369e9627d0098a5 (patch) | |
tree | 0ce141294675eb6cf94297ce596a6c914392ecf8 | |
parent | 9fee5a594bd7457deca732e57610cb7fb0c13fc6 (diff) | |
download | meta-openembedded-12f45d8b0009b45572668682c369e9627d0098a5.tar.gz |
kea: fix do_package warning
Add libdhcp_stat_cmds.a and libdhcp_ha.a to
FILES_${PN}-staticdev to fix below warning:
WARNING: kea-1.4.0-r0 do_package: QA Issue: kea: Files/directories were installed but not shipped in any package:
/usr/lib64/hooks/libdhcp_stat_cmds.a
/usr/lib64/hooks/libdhcp_ha.a
Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
-rw-r--r-- | meta-networking/recipes-connectivity/kea/kea_1.4.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-networking/recipes-connectivity/kea/kea_1.4.0.bb b/meta-networking/recipes-connectivity/kea/kea_1.4.0.bb index 40db22bf0..ba01b8c1c 100644 --- a/meta-networking/recipes-connectivity/kea/kea_1.4.0.bb +++ b/meta-networking/recipes-connectivity/kea/kea_1.4.0.bb | |||
@@ -45,7 +45,7 @@ PACKAGECONFIG[openssl] = "--with-openssl=${STAGING_DIR_TARGET}${prefix},,openssl | |||
45 | PACKAGECONFIG[log4cplus] = "--with-log4cplus=${STAGING_DIR_TARGET}${prefix},,log4cplus,log4cplus" | 45 | PACKAGECONFIG[log4cplus] = "--with-log4cplus=${STAGING_DIR_TARGET}${prefix},,log4cplus,log4cplus" |
46 | PACKAGECONFIG[boost] = "--with-boost-include=${STAGING_INCDIR} --with-boost-lib-dir=${STAGING_LIBDIR} --with-boost-libs=-lboost_system,,boost,boost" | 46 | PACKAGECONFIG[boost] = "--with-boost-include=${STAGING_INCDIR} --with-boost-lib-dir=${STAGING_LIBDIR} --with-boost-libs=-lboost_system,,boost,boost" |
47 | 47 | ||
48 | FILES_${PN}-staticdev += "${libdir}/kea/hooks/*.a" | 48 | FILES_${PN}-staticdev += "${libdir}/kea/hooks/*.a ${libdir}/hooks/*.a" |
49 | FILES_${PN} += "${libdir}/hooks/*.so" | 49 | FILES_${PN} += "${libdir}/hooks/*.so" |
50 | 50 | ||
51 | BBCLASSEXTEND += "native" | 51 | BBCLASSEXTEND += "native" |