Changeset f386fcc in clfs-sysroot for BOOK/final-system/common/man.xml


Ignore:
Timestamp:
Nov 5, 2006, 3:33:44 PM (17 years ago)
Author:
Joe Ciccone <jciccone@…>
Branches:
master
Children:
5141d74
Parents:
62b7b47
Message:

Added command to man instructions to comment out /usr/local/man.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BOOK/final-system/common/man.xml

    r62b7b47 rf386fcc  
    4040
    4141    <para os="d">Another <command>sed</command> substitution comments out the
    42     <quote>MANPATH /usr/man</quote> line in the <filename>man.conf</filename>
    43     file to prevent redundant results when using programs such as
    44     <command>whatis</command>:</para>
     42    <quote>MANPATH /usr/man</quote> and <quote>MANPATH /usr/local/man</quote>
     43    lines in the <filename>man.conf</filename> file to prevent redundant
     44    results when using programs such as <command>whatis</command>:</para>
    4545
    4646<screen os="e"><userinput>cp src/man.conf.in{,.orig}
    47 sed 's@MANPATH./usr/man@#&amp;@g' src/man.conf.in.orig &gt; src/man.conf.in</userinput></screen>
     47sed -e 's@MANPATH./usr/man@#&amp;@g' \
     48    -e 's@MANPATH./usr/local/man@#&amp;@g' \
     49    src/man.conf.in.orig &gt; src/man.conf.in</userinput></screen>
    4850
    4951    <para os="f">Finally, correct a syntax error in the
Note: See TracChangeset for help on using the changeset viewer.