| Summary: | Kernel RPM packages built from source fail to install due to wrong requirements: 'kysm' instead of kernel' | ||||||
|---|---|---|---|---|---|---|---|
| Product: | Red Hat Enterprise Linux 6 | Reporter: | Oliver Kurth <okurth> | ||||
| Component: | redhat-rpm-config | Assignee: | Florian Festi <ffesti> | ||||
| Status: | CLOSED ERRATA | QA Contact: | Karel Srot <ksrot> | ||||
| Severity: | unspecified | Docs Contact: | |||||
| Priority: | unspecified | ||||||
| Version: | 6.7 | CC: | ffesti, ksrot, lkardos | ||||
| Target Milestone: | rc | ||||||
| Target Release: | --- | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Linux | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | Environment: | ||||||
| Last Closed: | 2016-05-11 01:03:55 UTC | Type: | Bug | ||||
| Regression: | --- | Mount Type: | --- | ||||
| Documentation: | --- | CRM: | |||||
| Verified Versions: | Category: | --- | |||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||
| Attachments: |
|
||||||
|
Description
Oliver Kurth
2016-01-29 22:37:36 UTC
Created attachment 1119548 [details]
repclace LANG=C with LC_ALL=C
Attaching a patch that fixes the problem. All it does is s/LANG=C/LC_ALL=C/g.
Yes, we can fix it in 6.8. The real problem here is:
LANG=C join -t '\t' -j 1 ...
Delimiter '\t' is literally interpreted as '\t' and not as a tabulator. This confuses join command and it is not able to join input data correctly.
I replaced '\t' with $'\t' and to be 100% sure, I also added LC_LANG=C.
Fixed in redhat-rpm-config-9.0.3-48.el6
s/LC_LANG/LC_ALL/ Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://rhn.redhat.com/errata/RHBA-2016-0948.html |