Bug 3775
| Summary: | broken kde.csh login script | ||
|---|---|---|---|
| Product: | [Retired] Red Hat Linux | Reporter: | adler |
| Component: | kdesupport | Assignee: | David Lawrence <dkl> |
| Status: | CLOSED DUPLICATE | QA Contact: | |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | 6.0 | CC: | adler |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 1999-06-29 15:45:51 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
The file /etc/profile.d/kde.csh is broken as of kdesupport-1.1.1-1. The kde.csh file has bad csh syntax and bombs when you try to execute it becase of the bad syntax. Here is a diff file where I fixed the csh syntax [root@phyppro2 profile.d]# diff kde.csh kde.csh.orig 8,9c8,9 < set kdepath="${KDEDIR}/bin" < if ( `echo ${PATH} | grep -q ${kdepath}` ) then --- > kdepath="${KDEDIR}/bin" > if ( echo ${PATH} | grep -q ${kdepath} ) then 14d13 <