Bug 168163 - man pages in /usr/kerberos/man not marked as documentation
Summary: man pages in /usr/kerberos/man not marked as documentation
Keywords:
Status: CLOSED RAWHIDE
Alias: None
Product: Fedora
Classification: Fedora
Component: krb5
Version: 4
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Nalin Dahyabhai
QA Contact: Brian Brock
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2005-09-13 02:24 UTC by Albert Strasheim
Modified: 2007-11-30 22:11 UTC (History)
0 users

Fixed In Version: 1.4.2-4
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2005-09-13 20:26:18 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)

Description Albert Strasheim 2005-09-13 02:24:00 UTC
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.8b4) Gecko/20050908 Firefox/1.4

Description of problem:
The man pages in /usr/kerberos/man are not marked as documentation. As a result, they are not excluded when installing with --excludedocs.



Version-Release number of selected component (if applicable):
krb5-1.4.1-5

How reproducible:
Always

Steps to Reproduce:
1. Install any Kerberos package with --excludedocs
2.
3.
  

Actual Results:  Man pages are installed

Expected Results:  Man pages should not be installed

Additional info:

I used the following Perl script to check the package:

#!/usr/bin/perl -w
use strict;
while(<STDIN>) {
  chomp;
  my ($path,$size,$mtime,$md5sum,$mode,$owner,$group,$isconfig,$isdoc,$rdev,$sym
link) = split(/\s+/);
  if ( ! $isdoc ) {
    if ( $path =~ /\/man\// ) {
      print $path, "\n";
    }
  }
}

Usage:

rpm -qp --dump krb5-*.rpm | perl ~/checkdoc.pl

Comment 1 Nalin Dahyabhai 2005-09-13 20:26:18 UTC
Fixing in 1.4.2-4.


Note You need to log in before you can comment on or make changes to this bug.