diff options
author | Frederic Lepied <flepied@mandriva.com> | 2001-07-31 07:17:46 +0000 |
---|---|---|
committer | Frederic Lepied <flepied@mandriva.com> | 2001-07-31 07:17:46 +0000 |
commit | 5dd89950f6ad4d1f1e1db4989c5ccdf7af4a4bd8 (patch) | |
tree | 37eb17d8630d23747c7e75277a6515c40af58d50 /sbin/chksession | |
parent | 13a9547ac81310db67d7ebf8f018a9c83175970f (diff) | |
download | common-data-5dd89950f6ad4d1f1e1db4989c5ccdf7af4a4bd8.tar common-data-5dd89950f6ad4d1f1e1db4989c5ccdf7af4a4bd8.tar.gz common-data-5dd89950f6ad4d1f1e1db4989c5ccdf7af4a4bd8.tar.bz2 common-data-5dd89950f6ad4d1f1e1db4989c5ccdf7af4a4bd8.tar.xz common-data-5dd89950f6ad4d1f1e1db4989c5ccdf7af4a4bd8.zip |
put back my change to the Xsession path that was reverted by the resync.
Diffstat (limited to 'sbin/chksession')
-rw-r--r-- | sbin/chksession | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/chksession b/sbin/chksession index 72208a8..37108a4 100644 --- a/sbin/chksession +++ b/sbin/chksession @@ -94,7 +94,7 @@ if ($gdm) { for my $file (@lf) { open FH, ">/etc/X11/gdm/Sessions/$file" or die "Can't write to /etc/X11/gdm/Sessions/$file\n"; print FH "#!/bin/sh\n"; - print FH "exec /etc/X11/Xsession $file\n"; + print FH "exec /etc/X11/xdm/Xsession $file\n"; close FH; chmod 0755, $file; } |