diff options
author | Michael Lauer <mickey@vanille-media.de> | 2008-02-20 17:12:37 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2008-02-20 17:12:37 +0000 |
commit | 6836f43ea4f5dffc94d623c01cf3c39b56af8eef (patch) | |
tree | 4467e76d7a75e13d93d0060236c6ce40deacf499 /packages | |
parent | 92706f4159bbbd015f9b032815589491d8ce08cb (diff) | |
parent | 3d958d91ab81200fb1d53233e5855e08b5f56bbc (diff) |
merge of '1c2a066fe666a7ab871c0b647aa7557802e7960c'
and 'abff11b5d16c4babe2a2dc6adcf2fd393aea57d1'
Diffstat (limited to 'packages')
-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 } |