diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2019-08-30 01:02:46 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-08-30 06:45:52 -0700 |
commit | 2754eb92dbc8d675b73df49ac8dd640436e1c4ee (patch) | |
tree | 1e437650b4096be51d219b014137d9bffc2d6c4e /meta-networking | |
parent | 00582ff496d6e304b244305d511cbd2b766a00ec (diff) | |
download | meta-openembedded-2754eb92dbc8d675b73df49ac8dd640436e1c4ee.tar.gz |
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@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking')
-rw-r--r-- | meta-networking/recipes-support/netcf/netcf_0.2.8.bb | 4 |
1 files changed, 3 insertions, 1 deletions
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 a4a9c91c6..0f49d6060 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 \ | |||
14 | 14 | ||
15 | UPSTREAM_CHECK_GITTAGREGEX = "release-(?P<pver>(\d+(\.\d+)+))" | 15 | UPSTREAM_CHECK_GITTAGREGEX = "release-(?P<pver>(\d+(\.\d+)+))" |
16 | 16 | ||
17 | DEPENDS += "augeas libnl libxslt libxml2 gnulib" | 17 | DEPENDS += "augeas libnl libxslt libxml2" |
18 | |||
19 | do_configure[depends] += "gnulib:do_populate_sysroot" | ||
18 | 20 | ||
19 | S = "${WORKDIR}/git" | 21 | S = "${WORKDIR}/git" |
20 | 22 | ||