From: Florian Boor Date: Thu, 24 Sep 2009 10:27:16 +0000 (+0200) Subject: dbus.inc: Make sure target directory exists before installing files to it. X-Git-Tag: Release-2010-05/1~2313^2~4 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4de2e3a057436f3377270a0f806364654fd8096c;p=openembedded.git dbus.inc: Make sure target directory exists before installing files to it. --- diff --git a/recipes/dbus/dbus.inc b/recipes/dbus/dbus.inc index b5eeb08629..202aec432d 100644 --- a/recipes/dbus/dbus.inc +++ b/recipes/dbus/dbus.inc @@ -41,6 +41,7 @@ do_install_append() { 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: if [ -e bus/.libs/dbus-daemon-launch-helper ]; then + install -d ${D}${libexecdir}/ install -m 0755 bus/.libs/dbus-daemon-launch-helper ${D}${libexecdir}/ fi }