diff options
author | Michael Lauer <mickey@vanille-media.de> | 2008-02-21 10:46:35 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2008-02-21 10:46:35 +0000 |
commit | 9e1879c6bff04588c342854632b4569ea1273a97 (patch) | |
tree | 187db31862475b19d00a4c12b17e9962527dd220 /packages/dbus/dbus.inc | |
parent | 0b0038780ce149f018f511a7adfd4d0773ab9a5d (diff) | |
parent | 6836f43ea4f5dffc94d623c01cf3c39b56af8eef (diff) |
merge of '64e8fcf86d823ff35b714a70b3125d2fc95ded55'
and '7cc9c98056838b4d2eb67baf00c13e220ae94a0a'
Diffstat (limited to 'packages/dbus/dbus.inc')
-rw-r--r-- | packages/dbus/dbus.inc | 4 |
1 files changed, 3 insertions, 1 deletions
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 } |