Bug 453063
Summary: | startkde fails to find lnusertemp (kstandarddirs problem) | ||
---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | Rex Dieter <rdieter> |
Component: | kdebase-workspace | Assignee: | Than Ngo <than> |
Status: | CLOSED RAWHIDE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
Severity: | low | Docs Contact: | |
Priority: | low | ||
Version: | rawhide | CC: | fedora, kevin, ltinkl, rdieter, tuxbrewr |
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: | 2008-06-27 02:34:39 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: | |||
Bug Depends On: | |||
Bug Blocks: | 446427 |
Description
Rex Dieter
2008-06-27 01:04:48 UTC
fwiw, $ kde4-config --path exe /home/rdieter1/.kde/libexec/kde4/:/home/rdieter1/.kde/bin/:/usr/bin/ no /usr/libexec ? With kdelibs-4.0.5-2.fc9, I get: /home/kevin/.kde/libexec/kde4/:/home/kevin/.kde/bin/:/usr/bin/:/usr/libexec/kde4/ Likewise kdelibs4-4.0.5-2.fc8. So this sounds like a regression in our KDE 4.1 packages. (Rex is using 4.0.83.) Still the order is bad, /usr/libexec/kde4 should come first, this sounds like fallout from the kstandarddirs patch. The ordering issue on F9 can probably be fixed by changing: if (strcmp("config", type)) to: if (strcmp("config", type) && strcmp("exe", type)) and: if (!strcmp("config", type)) to: if (!strcmp("config", type) || !strcmp("exe", type)) in the kstandarddirs patch. The KDE 4.1 issue sounds different. Different, but related, it turns out this upstream kstandarddirs change is to blame: http://websvn.kde.org/trunk/KDE/kdelibs/kdecore/kernel/kstandarddirs.cpp?r1=819551&r2=819560 F9 build: http://koji.fedoraproject.org/koji/taskinfo?taskID=682824 Rawhide build: http://koji.fedoraproject.org/koji/taskinfo?taskID=682835 I can confirm that the ordering issue is fixed in kdelibs-4.0.5-4.fc9. Rex confirms 4.0.83-3.fc10 is good as well (/usr/libexec/kde4 is listed and in the correct order). F8 kdelibs4 build here: http://koji.fedoraproject.org/koji/taskinfo?taskID=682865 |