From cc309828ad053cfd2d052568d21ddbb5ceebee79 Mon Sep 17 00:00:00 2001 From: Robert Yang Date: Thu, 19 Nov 2015 23:39:51 -0800 Subject: nbd: use BPN in Files Fixed when build with multilib: lib32-nbd-3.11: lib32-nbd: Files/directories were installed but not shipped in any package: /usr/sbin/nbd-client /usr/bin/nbd-trdump /usr/bin/nbd-server Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. lib32-nbd: 3 installed and not shipped files. [installed-vs-shipped] Signed-off-by: Robert Yang --- meta-networking/recipes-support/nbd/nbd_3.11.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta-networking/recipes-support/nbd/nbd_3.11.bb b/meta-networking/recipes-support/nbd/nbd_3.11.bb index 70dc7e9213..0f0ae8ee81 100644 --- a/meta-networking/recipes-support/nbd/nbd_3.11.bb +++ b/meta-networking/recipes-support/nbd/nbd_3.11.bb @@ -14,6 +14,6 @@ inherit autotools pkgconfig PACKAGES = "${PN}-client ${PN}-server ${PN}-dbg ${PN}-trdump ${PN}-doc" -FILES_${PN}-client = "${sbindir}/${PN}-client" -FILES_${PN}-server = "${bindir}/${PN}-server" -FILES_${PN}-trdump = "${bindir}/${PN}-trdump" +FILES_${PN}-client = "${sbindir}/${BPN}-client" +FILES_${PN}-server = "${bindir}/${BPN}-server" +FILES_${PN}-trdump = "${bindir}/${BPN}-trdump" -- cgit 1.2.3-korg an OpenEmbedded Core layerGrokmirror user
summaryrefslogtreecommitdiffstats
blob: d20dc59fb4fbbfa2a05dc4b13b9dea8c53082d33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20