提交 49096719 编写于 作者: R Richard Levitte

Handle des_modes.pod properly.

PR: 634
上级 606c8048
......@@ -580,7 +580,7 @@ install_docs:
grep -v $$filecase "^$$fn\$$" | \
(cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
while read n; do \
$$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) $$n.$${sec}$(MANSUFFIX); \
$$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
done); \
done; \
for i in doc/crypto/*.pod doc/ssl/*.pod; do \
......@@ -596,7 +596,7 @@ install_docs:
grep -v $$filecase "^$$fn\$$" | \
(cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
while read n; do \
$$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) $$n.$${sec}$(MANSUFFIX); \
$$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
done); \
done
......
......@@ -9,8 +9,8 @@ while(<STDIN>) {
} elsif ($name) {
if (/ - /) {
s/ - .*//;
s/[ \t,]+/ /g;
push @words, split ' ';
s/,[ \t]+/,/g;
push @words, split ',';
}
}
if (/^=head1 *NAME *$/) {
......
#!/bin/sh
rm -f $2
rm -f "$2"
if test "$OSTYPE" = msdosdjgpp; then
cp $1 $2
cp "$1" "$2"
else
ln -s $1 $2
ln -s "$1" "$2"
fi
echo "$2 => $1"
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册