diff options
author | Michael Lauer <mickey@vanille-media.de> | 2008-02-20 17:11:27 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2008-02-20 17:11:27 +0000 |
commit | 3d958d91ab81200fb1d53233e5855e08b5f56bbc (patch) | |
tree | 8f977411f16dd2e3099c83b764c4792879ea50f7 | |
parent | eca355c292e689473615f5b74419bbba7288fa4d (diff) |
dbus repair building 1.0.2
-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 } |