Package: debhelper
Version: 7.0.11
Severity: normal

dh_installman does not support 3-letter locale codes.
ISO 639-3 define locale codes with 3-letters.

Executing dh_installman --language=que  debian/myprogram.que.8

dh_installman parses the manpage filename in line 150 with a regex.

Exactly, the line is ($langcode)=$basename=~m/.*\.([a-z][a-z](?:_[A-Z][A-Z])?)\.(?:[1-9]|man)/;

and should be:

($langcode)=$basename=~m/.*\.([a-z]{2,3}(?:_[A-Z][A-Z])?)\.(?:[1-9]|man)/;

Thanks.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to