Someone mixed up sh and csh syntax in /etc/profile.d/kde.csh. It breaks csh/tcsh logins horribly (no user login scripts are executed!!). Patch follows: write me if this wordwraps horribly: --- /etc/profile.d/kde.csh.orig Mon Jun 21 14:28:21 1999 +++ /etc/profile.d/kde.csh Wed Jun 23 15:15:46 1999 @@ -5,9 +5,7 @@ endif endif setenv KDEDIR /usr -kdepath="${KDEDIR}/bin" -if ( echo ${PATH} | grep -q ${kdepath} ) then - exit -endif +set kdepath="${KDEDIR}/bin" +if ( `echo ${PATH} | grep -q ${kdepath} | wc -l` != 0 ) exit
*** This bug has been marked as a duplicate of 3686 ***