Handle des_modes.pod properly.
PR: 634
This commit is contained in:
parent
606c8048a0
commit
490967195a
3 changed files with 7 additions and 7 deletions
|
@ -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 *$/) {
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
#!/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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue