It's not THAT hard to modify your $MANPATH variable to include the
nonstandard man page areas.  This is some code I use in my .cshrc file
on Solaris:

=====

# there is always a way

set path=( \
${HOME}/bin \
${HOME}/src/script \
/bin \
/usr/bin \
/usr/local/bin \
/usr/sbin \
/opt/SUNWspro/bin \
/usr/ccs/bin \
/usr/ccs/lib \
/usr/ucb \
/etc \
/usr/perl5/5.00503/bin \
. \
)

# so do it in two steps

set mptemp=( \
${HOME}/man \
/usr/local/openssl/current/ssl/man \
/usr/local/openssh/current/man \
/usr/share/man \
)
setenv MANPATH `echo $mptemp|sed 's/ /:/g'`
unset mptemp

=====

Rodney Thayer wrote:

At 07:35 PM 2/15/2003 +0100, Dr. Stephen Henson wrote:

This is mentioned in detail, with examples, in the pem(3) manual page.

In Linux the man pages are installed in /usr/local/ssl/man. In other words
they're not put in a place that 'man' can find them. Should I file
a bug?

I consider it a bug that I can't do "man 3 pem" after having done a "make install".

______________________________________________________________________
OpenSSL Project http://www.openssl.org
User Support Mailing List [EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]


______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to