diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2016-02-29 17:53:55 -0300 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2016-02-29 17:53:55 -0300 |
commit | 8504ec929de7eb9ac49a019194f6ec2788caabba (patch) | |
tree | 5604d8d52caa32e116d9396f60ba3c1fd7cf4185 | |
parent | 0a20d07ea6558484b51e57cbcab11f97180a3dee (diff) | |
download | postgresql-8504ec929de7eb9ac49a019194f6ec2788caabba.tar.gz postgresql-8504ec929de7eb9ac49a019194f6ec2788caabba.zip |
doc: document MANPATH as /usr/local/pgsql/share/man
The docs were advising to use /usr/local/pgsql/man instead, but that's
wrong.
Reported-By: Slawomir Sudnik
Backpatch-To: 9.1
Bug: #13894
-rw-r--r-- | doc/src/sgml/installation.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/installation.sgml b/doc/src/sgml/installation.sgml index 01a1f719bcc..de13e3b6252 100644 --- a/doc/src/sgml/installation.sgml +++ b/doc/src/sgml/installation.sgml @@ -1793,7 +1793,7 @@ set path = ( /usr/local/pgsql/bin $path ) shell start-up file unless you installed into a location that is searched by default: <programlisting> -MANPATH=/usr/local/pgsql/man:$MANPATH +MANPATH=/usr/local/pgsql/share/man:$MANPATH export MANPATH </programlisting> </para> @@ -2738,13 +2738,13 @@ PHSS_30849 s700_800 u2comp/be/plugin library Patch <para> By default, the PostgreSQL man pages are installed into - <filename>/usr/local/pgsql/man</filename>. By default, UnixWare + <filename>/usr/local/pgsql/share/man</filename>. By default, UnixWare does not look there for man pages. To be able to read them you need to modify the <varname>MANPATH</varname> variable in <filename>/etc/default/man</filename>, for example: <programlisting> -MANPATH=/usr/lib/scohelp/%L/man:/usr/dt/man:/usr/man:/usr/share/man:scohelp:/usr/local/man:/usr/local/pgsql/man +MANPATH=/usr/lib/scohelp/%L/man:/usr/dt/man:/usr/man:/usr/share/man:scohelp:/usr/local/man:/usr/local/pgsql/share/man </programlisting> </para> |