If a user has tcsh as her primary shell, the error message would be displayed after login and some other bad things would happen. The problem is in file /etc/profile.d/kde.csh, where somebody forgot to change shell commands to csh commands. Following patch should fix the bug: *** /etc/profile.d/kde.csh Mon Jun 21 20:28:21 1999 --- /etc/profile.d/kde.csh.pk Tue Jun 22 19:29:51 1999 *************** *** 5,13 **** endif endif setenv KDEDIR /usr ! kdepath="${KDEDIR}/bin" ! if ( echo ${PATH} | grep -q ${kdepath} ) then ! exit ! endif ! ! setenv PATH "${kdepath}:${PATH}" --- 5,10 ---- endif endif setenv KDEDIR /usr ! set kdepath="${KDEDIR}/bin" ! echo ${PATH} | grep -q ${kdepath} || \ ! setenv PATH "${kdepath}:${PATH}"
*** This bug has been marked as a duplicate of 3686 ***