Bug 130667
Summary: | Directory /usr/share/doc/kernel-doc-2.6.9/ is not owned by any package | ||
---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | Dawid Gajownik <gajownik> |
Component: | kernel | Assignee: | Dave Jones <davej> |
Status: | CLOSED RAWHIDE | QA Contact: | Brian Brock <bbrock> |
Severity: | low | Docs Contact: | |
Priority: | medium | ||
Version: | rawhide | CC: | nphilipp, pfrields, wtogami |
Target Milestone: | --- | Keywords: | EasyFix |
Target Release: | --- | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2005-05-27 10:42:03 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: | 136451 |
Description
Dawid Gajownik
2004-08-23 16:16:59 UTC
This is still the case with 2.6.9-1.681_FC3. And it should also own the Documentation subdirectory. The spec file should probably have something along the lines of this in it (NB: I didn't look at the actual spec file so things might have to be a tad different in there): [...] %files doc [...] %dir %{_datadir}/doc/kernel-%{version} %dir %{_datadir}/doc/kernel-%{version}/Documentation [...] ping bugzilla.redhat.com Dan could you please fix this? Easy adding of lines to spec file. Oops, I mean Dave. I need to sleep... I committed this to CVS today, which should fix the issue: --- kernel-2.6.spec 29 Mar 2005 19:39:04 -0000 1.1213 +++ kernel-2.6.spec 29 Mar 2005 19:43:45 -0000 @@ -1078,7 +1078,8 @@ %if %{builddoc} %files doc %defattr(-,root,root) -/usr/share/doc/kernel-doc-%{kversion}/Documentation/* +%{_datadir}/doc/kernel-doc-%{kversion}/Documentation/* +%dir %{_datadir}/doc/kernel-doc-%{kversion} %endif [y4kk0@X ~]$ rpm -qf /usr/share/doc/kernel-doc-2.6.11 kernel-doc-2.6.11-1.1219_FC4 [y4kk0@X ~]$ rpm -qf /usr/share/doc/kernel-doc-2.6.11/Documentation file /usr/share/doc/kernel-doc-2.6.11/Documentation is not owned by any package And after 'rpm -e kernel-doc' [y4kk0@X ~]$ ls /usr/share/doc/kernel-doc-2.6.11/ Documentation [y4kk0@X ~]$ It's not fixed :P Fixed in Rawhide :] http://cvs.fedora.redhat.com/viewcvs/devel/kernel/kernel-2.6.spec?r1=1.1344&r2=1.1345 Bug 158478 can be also closed. |