[oe-commits] [meta-openembedded] 04/09: netcf: Fix Manifest not found issue

git at git.openembedded.org git at git.openembedded.org
Fri Aug 30 21:06:11 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 2754eb92dbc8d675b73df49ac8dd640436e1c4ee
Author: Robert Yang <liezhi.yang at windriver.com>
AuthorDate: Fri Aug 30 01:02:46 2019 -0700

    netcf: Fix Manifest not found issue
    
    Fixed:
    $ bitbake netcf
    WARNING: netcf-0.2.8+gitAUTOINC+2c5d425585-r0 do_package: Manifest /path/sstate-control/manifest-x86_64_x86_64-nativesdk-gnulib.packagedata not found in intel_x86_64 corei7-64 core2-64 x86_64 allarch x86_64_x86_64-nativesdk (variant '')?
    
    This is because gnulib has no related tasks:
    do_package[noexec] = "1"
    do_packagedata[noexec] = "1"
    deltask package_write_ipk
    deltask package_write_deb
    deltask package_write_rpm
    deltask do_deploy_archives
    
    Depends on gnulib:do_populate_sysroot explicitly to fix the problem.
    
    Signed-off-by: Robert Yang <liezhi.yang at windriver.com>
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 meta-networking/recipes-support/netcf/netcf_0.2.8.bb | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/meta-networking/recipes-support/netcf/netcf_0.2.8.bb b/meta-networking/recipes-support/netcf/netcf_0.2.8.bb
index a4a9c91..0f49d60 100644
--- a/meta-networking/recipes-support/netcf/netcf_0.2.8.bb
+++ b/meta-networking/recipes-support/netcf/netcf_0.2.8.bb
@@ -14,7 +14,9 @@ SRC_URI = "git://pagure.io/netcf.git;protocol=https \
 
 UPSTREAM_CHECK_GITTAGREGEX = "release-(?P<pver>(\d+(\.\d+)+))"
 
-DEPENDS += "augeas libnl libxslt libxml2 gnulib"
+DEPENDS += "augeas libnl libxslt libxml2"
+
+do_configure[depends] += "gnulib:do_populate_sysroot"
 
 S = "${WORKDIR}/git"
 

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


More information about the Openembedded-commits mailing list