From: Michael Lauer Date: Wed, 20 Feb 2008 17:11:27 +0000 (+0000) Subject: dbus repair building 1.0.2 X-Git-Tag: Release-2010-05/1~7648^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d958d91ab81200fb1d53233e5855e08b5f56bbc;p=openembedded.git dbus repair building 1.0.2 --- diff --git a/packages/dbus/dbus.inc b/packages/dbus/dbus.inc index ed0a0b3cf2..a8fd31d8c7 100644 --- a/packages/dbus/dbus.inc +++ b/packages/dbus/dbus.inc @@ -85,5 +85,7 @@ do_install_append() { install -d ${D}${sysconfdir}/init.d install -m 0755 ${WORKDIR}/dbus-1.init ${D}${sysconfdir}/init.d/dbus-1 # the stock install seems to install the libtool wrapper script, so we have to copy this manually :M: - install -m 0755 bus/.libs/dbus-daemon-launch-helper ${D}${libexecdir}/ + if [ -e bus/.libs/dbus-daemon-launch-helper ]; then + install -m 0755 bus/.libs/dbus-daemon-launch-helper ${D}${libexecdir}/ + fi }