Summary: | kdebase/workspace/startkde runs dbus-launch --auto-syntax, which gives errors is SHELL is /bin/csh | ||
---|---|---|---|
Product: | [Plasma] kstart | Reporter: | Steve Evans <stevee> |
Component: | general | Assignee: | Lubos Lunak <l.lunak> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Solaris | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Steve Evans
2007-05-23 14:44:32 UTC
SVN commit 667903 by lunakl: startkde uses /bin/sh, so ask explicitly for sh syntax when launching dbus (for people not using sh-compatible shell) BUG: 145848 M +1 -1 startkde --- trunk/KDE/kdebase/workspace/startkde #667902:667903 @@ -278,7 +278,7 @@ if ! qdbus >/dev/null 2>/dev/null; then # Remove the next two lines after D-Bus 1.0 is released. # It comes with auto-starting, so running dbus-launch won't be necessary - eval `dbus-launch --auto-syntax --exit-with-session < /dev/null` + eval `dbus-launch --sh-syntax --exit-with-session < /dev/null` if ! qdbus >/dev/null 2>/dev/null; then # Startup error echo 'startkde: Could not start D-Bus. Check your installation.' 1>&2 |