diff options
author | Anuj Mittal <anuj.mittal@intel.com> | 2021-12-13 15:38:33 +0800 |
---|---|---|
committer | Anuj Mittal <anuj.mittal@intel.com> | 2021-12-13 15:44:02 +0800 |
commit | 11edbc7a9681983c37716f2381770755e21fe619 (patch) | |
tree | 5be22c6dfc09e0bee08cf7217755a565c3ee8d82 /recipes-extended | |
parent | 21121e672ca0e84c317dde9047636df8dcc00985 (diff) | |
download | meta-dpdk-11edbc7a9681983c37716f2381770755e21fe619.tar.gz |
dpdk: use += with FILES when packaging PN
The packaging rules are too restrictive and lead to errors when a binary
is generated that is not currently captured by the rules. Use += so it
at least is packaged and doesn't cause errors.
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Diffstat (limited to 'recipes-extended')
-rw-r--r-- | recipes-extended/dpdk/dpdk_21.11.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-extended/dpdk/dpdk_21.11.0.bb b/recipes-extended/dpdk/dpdk_21.11.0.bb index f7cdf0f..8f4fff5 100644 --- a/recipes-extended/dpdk/dpdk_21.11.0.bb +++ b/recipes-extended/dpdk/dpdk_21.11.0.bb | |||
@@ -47,7 +47,7 @@ do_install:append(){ | |||
47 | 47 | ||
48 | PACKAGES =+ "${PN}-examples ${PN}-tools" | 48 | PACKAGES =+ "${PN}-examples ${PN}-tools" |
49 | 49 | ||
50 | FILES:${PN} = " ${bindir}/dpdk-testpmd \ | 50 | FILES:${PN} += " ${bindir}/dpdk-testpmd \ |
51 | ${bindir}/dpdk-proc-info \ | 51 | ${bindir}/dpdk-proc-info \ |
52 | ${libdir}/*.so* \ | 52 | ${libdir}/*.so* \ |
53 | ${libdir}/dpdk/pmds-22.0/*.so* \ | 53 | ${libdir}/dpdk/pmds-22.0/*.so* \ |