Changeset f386fcc in clfs-sysroot


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.

Location:
BOOK
Files:
2 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
  • BOOK/introduction/common/changelog.xml

    r62b7b47 rf386fcc  
    4141      <itemizedlist>
    4242        <listitem>
     43          <para>[jciccone] - Added command to man instructions to comment out
     44          MANPATH /usr/local/man (in addition to /usr/man).</para>
     45        </listitem>
     46        <listitem>
    4347          <para>[jciccone] - Updated Bash 3.2 with some unofficial upstream fixes. Thank you Chet Ramey.</para>
    4448        </listitem>
Note: See TracChangeset for help on using the changeset viewer.