* [PATCH 0/1] avahi: fix installed but not shipped warning
@ 2013-03-05 12:42 Robert Yang
2013-03-05 12:42 ` [PATCH 1/1] " Robert Yang
0 siblings, 1 reply; 2+ messages in thread
From: Robert Yang @ 2013-03-05 12:42 UTC (permalink / raw)
To: openembedded-core
The following changes since commit 93ec7b4d1550e07caec86e2998d0f94a01c7e785:
xserver-xf86-config: atom-pc doesn't need a xorg.conf (2013-03-04 14:42:11 +0000)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib robert/avahi
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=robert/avahi
Robert Yang (1):
avahi: fix installed but not shipped warning
meta/recipes-connectivity/avahi/avahi.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
1.7.11.2
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH 1/1] avahi: fix installed but not shipped warning
2013-03-05 12:42 [PATCH 0/1] avahi: fix installed but not shipped warning Robert Yang
@ 2013-03-05 12:42 ` Robert Yang
0 siblings, 0 replies; 2+ messages in thread
From: Robert Yang @ 2013-03-05 12:42 UTC (permalink / raw)
To: openembedded-core
The avahi recipe has a warning when build without systemd feature:
WARNING: QA Issue: avahi: Files/directories were installed but not shipped
/usr/share/dbus-1
The /usr/share/dbus-1 is empty without systemd feature, there would be
/usr/share/dbus-1/system-services with systemd. Use rmdir to fix the
problem, and remove the ${datadir}/dbus-1/interfaces from the FILES list
which had been removed clearly by the do_install.
[YOCTO #3939]
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
meta/recipes-connectivity/avahi/avahi.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-connectivity/avahi/avahi.inc b/meta/recipes-connectivity/avahi/avahi.inc
index 3a4547c..1b7e26a 100644
--- a/meta/recipes-connectivity/avahi/avahi.inc
+++ b/meta/recipes-connectivity/avahi/avahi.inc
@@ -90,7 +90,6 @@ FILES_avahi-daemon = "${sbindir}/avahi-daemon \
${datadir}/avahi/introspection/*.introspect \
${datadir}/avahi/avahi-service.dtd \
${datadir}/avahi/service-types \
- ${datadir}/dbus-1/interfaces \
${datadir}/dbus-1/system-services"
FILES_libavahi-client = "${libdir}/libavahi-client.so.*"
FILES_libavahi-ui = "${libdir}/libavahi-ui.so.*"
@@ -128,6 +127,7 @@ do_install() {
# if /var/run become non-empty in the future, need to install it via volatile
rm -rf ${D}/var/run
rm -rf ${D}${datadir}/dbus-1/interfaces
+ rmdir --ignore-fail-on-non-empty ${D}${datadir}/dbus-1
rm -rf ${D}${libdir}/avahi
install -d ${D}${sysconfdir}/udhcpc.d
--
1.7.11.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-03-05 12:56 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-05 12:42 [PATCH 0/1] avahi: fix installed but not shipped warning Robert Yang
2013-03-05 12:42 ` [PATCH 1/1] " Robert Yang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox