diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2014-09-23 22:19:58 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-09-23 21:31:45 +0100 |
commit | a8f07626d627b49913835778cc8039accd8b9896 (patch) | |
tree | bbc6106443c74c1c54d47d5ee8f51fb9f22981e6 /meta/recipes-extended/man | |
parent | 3fc1b5acb50aa864d386f69a1c0d0db0425f970c (diff) | |
download | openembedded-core-contrib-a8f07626d627b49913835778cc8039accd8b9896.tar.gz |
man: fix not support xz/bz2 compression
In oe-core, bunzip and unzx located in /usr/bin/
rather than /usr, so tweak man's config.
[YOCTO #6750]
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/man')
-rw-r--r-- | meta/recipes-extended/man/man/man.conf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-extended/man/man/man.conf b/meta/recipes-extended/man/man/man.conf index bb3c69720e7..fc10be2758d 100644 --- a/meta/recipes-extended/man/man/man.conf +++ b/meta/recipes-extended/man/man/man.conf @@ -133,7 +133,8 @@ MANSECT 1:1p:8:2:3:3p:4:5:6:7:9:0p:tcl:n:l:p:o # The command given must act as a filter. # .gz /bin/gunzip -c -.bz2 /bin/bzip2 -c -d +.bz2 /usr/bin/bunzip2 -c +.xz /usr/bin/unxz -c .z .Z /bin/zcat .F |