diff options
author | Florian Boor <florian.boor@kernelconcepts.de> | 2009-09-24 12:27:16 +0200 |
---|---|---|
committer | Florian Boor <florian.boor@kernelconcepts.de> | 2009-09-24 12:28:19 +0200 |
commit | 4de2e3a057436f3377270a0f806364654fd8096c (patch) | |
tree | d71970506663939fa903297c5d59a2bac56cfb57 /recipes | |
parent | 2455668c3a182ba3bf7bdbd4f94b940b1f978f03 (diff) |
dbus.inc: Make sure target directory exists before installing files to it.
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/dbus/dbus.inc | 1 |
1 files changed, 1 insertions, 0 deletions
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 } |