RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Bug 903048 - [fr_FR] various manpages missing from man-pages-fr
Summary: [fr_FR] various manpages missing from man-pages-fr
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Enterprise Linux 6
Classification: Red Hat
Component: man-pages-fr
Version: 6.4
Hardware: x86_64
OS: Linux
high
high
Target Milestone: rc
: ---
Assignee: Mike FABIAN
QA Contact: QE Internationalization Bugs
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2013-01-23 01:49 UTC by Lijun Li
Modified: 2013-07-18 09:36 UTC (History)
4 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2013-07-18 09:36:05 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)
phony-targets.patch (2.88 KB, patch)
2013-01-30 08:40 UTC, Mike FABIAN
no flags Details | Diff
0001-fix-Makefile-in-man-pages-extras-fr-0.8.1.tar.bz2-to.patch (4.96 KB, patch)
2013-01-30 08:42 UTC, Mike FABIAN
no flags Details | Diff


Links
System ID Private Priority Status Summary Last Updated
Red Hat Product Errata RHBA-2013:1093 0 normal SHIPPED_LIVE man-pages-fr bug fix update 2013-07-18 13:34:34 UTC

Description Lijun Li 2013-01-23 01:49:39 UTC
Description of problem:
[fr_FR] man echo manuals are still English.

Version-Release number of selected component (if applicable):
# rpm -q man-pages-fr
man-pages-fr-3.23-9.el6.noarch


How reproducible:
100%

Steps to Reproduce:
1. Install latest rhel6.4 client build.
2. Install man-pages-fr package.
3. Type followings to check translations

# man less

# man more

# man bash

# man echo

# man man
  
Actual results:
# man echo  manuals are still English.

Expected results:
# man echo should be localized.

Additional info:

Comment 2 Mike FABIAN 2013-01-30 08:40:48 UTC
Created attachment 690211 [details]
phony-targets.patch

Patch to fix the problem.

in man-pages-extras-fr-0.8.1/Makefile, the target “afaire :”
does not work:

mfabian@ari:~/rpmsources/fedora/man-pages-fr/man-pages-extras-fr-0.8.1 (master)
$ LANG=fr_FR.UTF-8 make afaire
make: « afaire » est à jour.
mfabian@ari:~/rpmsources/fedora/man-pages-fr/man-pages-extras-fr-0.8.1 (master)
$ 

(Problem is the same in f18 and rhel-6.4).

This is because the existing folder “afaire/” has exactly the same
name as the target. To make it work nevertheless, the target needs
to be declared .PHONY like this:

+.PHONY : afaire
 afaire :
        cd afaire ; \
        make install ;

http://www.gnu.org/software/make/manual/html_node/Phony-Targets.html

Comment 3 Mike FABIAN 2013-01-30 08:42:47 UTC
Created attachment 690212 [details]
0001-fix-Makefile-in-man-pages-extras-fr-0.8.1.tar.bz2-to.patch

Patch for man-pages-fr.spec in rhel-6.4 branch.

Comment 4 Mike FABIAN 2013-01-30 08:50:39 UTC
These are the French man-pages added by the fix:

mfabian@ari:~/rpmsources/rhel/man-pages-fr (rhel-6.4)
$ ls man-pages-fr-3.23/afaire/
Makefile    dirname.1  fold.1     nice.1     printenv.1  sum.1   tty.1       yes.1
basename.1  echo.1     groups.1   nl.1       printf.1    tac.1   uname.1
cat.1       env.1      head.1     nohup.1    pwd.1       tail.1  unexpand.1
cksum.1     expand.1   hostid.1   od.1       sleep.1     tar.1   uniq.1
comm.1      expr.1     id.1       passwd.1   sort.1      tee.1   users.1
csplit.1    false.1    join.1     paste.1    split.1     test.1  wc.1
cut.1       find.1     logname.1  pathchk.1  stty.1      tr.1    who.1
date.1      fmt.1      md5sum.1   pr.1       su.1        true.1  whoami.1
mfabian@ari:~/rpmsources/rhel/man-pages-fr (rhel-6.4)
$

Comment 5 Mike FABIAN 2013-01-30 09:23:34 UTC
The same bug exist in Fedora 18, see bug#905826.

Comment 6 Mike FABIAN 2013-02-07 06:57:19 UTC
Fixed for Fedora 18 now:

https://bugzilla.redhat.com/show_bug.cgi?id=905826#c6

Comment 9 Mike FABIAN 2013-03-26 07:34:21 UTC
Fix pushed to  rhel-6.5 branch:

commit 6ed81737a291ac3cd3ab76bf0d44a5f802f7c586
Author: Mike FABIAN <mfabian>
Date:   Wed Jan 30 08:44:39 2013 +0100

    fix Makefile in man-pages-extras-fr-0.8.1.tar.bz2 to install missing man-pages
    
    Resolves: #903048 - [fr_FR] man echo manuals are still English.

Comment 13 errata-xmlrpc 2013-07-18 09:36:05 UTC
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.

http://rhn.redhat.com/errata/RHBA-2013-1093.html


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