mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-18 16:28:06 +02:00
2006-02-10 John (J5) Palmieri <johnp@redhat.com>
* tools/dbus-launch.c: Fixed csh syntax output (Bug #5720)
This commit is contained in:
parent
d7580d7bd6
commit
8fcc91bf0b
2 changed files with 6 additions and 2 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2006-02-10 John (J5) Palmieri <johnp@redhat.com>
|
||||
|
||||
* tools/dbus-launch.c: Fixed csh syntax output (Bug #5720)
|
||||
|
||||
2006-02-10 John (J5) Palmieri <johnp@redhat.com>
|
||||
|
||||
* gcj/Makefile.am: point to correct jar command (Bug #4529)
|
||||
|
|
|
|||
|
|
@ -884,7 +884,7 @@ main (int argc, char **argv)
|
|||
else
|
||||
{
|
||||
if (c_shell_syntax)
|
||||
printf ("setenv DBUS_SESSION_BUS_ADDRESS '%s'\n", bus_address);
|
||||
printf ("setenv DBUS_SESSION_BUS_ADDRESS '%s';\n", bus_address);
|
||||
else
|
||||
{
|
||||
printf ("DBUS_SESSION_BUS_ADDRESS='%s'\n", bus_address);
|
||||
|
|
@ -892,7 +892,7 @@ main (int argc, char **argv)
|
|||
printf ("export DBUS_SESSION_BUS_ADDRESS\n");
|
||||
}
|
||||
if (c_shell_syntax)
|
||||
printf ("set DBUS_SESSION_BUS_PID=%ld\n", (long) bus_pid);
|
||||
printf ("set DBUS_SESSION_BUS_PID=%ld;\n", (long) bus_pid);
|
||||
else
|
||||
printf ("DBUS_SESSION_BUS_PID=%ld\n", (long) bus_pid);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue