You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
392 B

  1. #!/bin/sh
  2. #
  3. # Simple wrapper script which allows us to build dbus without general x support
  4. # If an application needs x support in dbus-launch it has to depend on the
  5. # dbus-launch-x package. The script is used to prefer dbus-launch with x over
  6. # the dbus-lauch without x.
  7. if [ -f /usr/bin/dbus-launch-x ]; then
  8. exec /usr/bin/dbus-launch-x "$@"
  9. else
  10. exec /usr/bin/dbus-launch.real "$@"
  11. fi