summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2009-03-08 18:25:45 +0100
committerDaniel Friesel <derf@derf.homelinux.org>2009-03-08 18:25:45 +0100
commit01a2107000e01d43cc618a3f93cd484a3e6361c3 (patch)
tree51d4bf5ef1b3d0fea3065e15fe5bd4c1e8ac6043 /bin
parent1795784d60cce51b5cbb9e4f26ee282cafac1bc9 (diff)
Use unicode in manuals
Diffstat (limited to 'bin')
-rwxr-xr-xbin/pkg4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/pkg b/bin/pkg
index 7400fdf..cb3e144 100755
--- a/bin/pkg
+++ b/bin/pkg
@@ -487,7 +487,7 @@ function populate_collected {
section=${i:h:t}
manpage=${i:t}
if (podchecker man/$section/$manpage &> /dev/null) {
- pod2man -s $section -c "$1 package" -r $HOME man/$section/$manpage > $PDIR/.collected/man/man$section/$manpage.$section
+ pod2man -u -s $section -c "$1 package" -r $HOME man/$section/$manpage > $PDIR/.collected/man/man$section/$manpage.$section
say -n "+"
(( mans++ ))
} else {
@@ -499,7 +499,7 @@ function populate_collected {
if [[ -d bin ]] {
for i in bin/*; {
if (podchecker $i &> /dev/null) {
- pod2man $i > $PDIR/.collected/man/man1/${i:t}.1
+ pod2man -u $i > $PDIR/.collected/man/man1/${i:t}.1
say -n "+"
(( bins++ ))
} else {