Changes in / [dcb4788f:e15b03b]


Ignore:
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • appendices/dependencies.xml

    rdcb4788f re15b03b  
    245245        <segtitle>&dependencies;</segtitle>
    246246        <seglistitem>
    247           <seg>Bash, Binutils, Coreutils, GCC, Glibc, Grep, Make, and Readline</seg>
     247          <seg>Bash, Binutils, Coreutils, GCC, Glibc, Grep, and Make</seg>
    248248        </seglistitem>
    249249      </segmentedlist>
     
    26162616        <segtitle>&before;</segtitle>
    26172617        <seglistitem>
    2618           <seg>Bash, Bc, and Gawk</seg>
     2618          <seg>Bash and Gawk</seg>
    26192619        </seglistitem>
    26202620      </segmentedlist>
  • bootscripts/lfs/init.d/cleanfs

    rdcb4788f re15b03b  
    106106      evaluate_retval
    107107
    108       if grep -E -qv '^(#|$)' /etc/sysconfig/createfiles 2>/dev/null; then
     108      if egrep -qv '^(#|$)' /etc/sysconfig/createfiles 2>/dev/null; then
    109109         log_info_msg "Creating files and directories... "
    110110         create_files      # Always returns 0
  • bootscripts/lfs/init.d/modules

    rdcb4788f re15b03b  
    3636      # valid entries
    3737      [ -r /etc/sysconfig/modules ]             || exit 0
    38       grep -E -qv '^($|#)' /etc/sysconfig/modules || exit 0
     38      egrep -qv '^($|#)' /etc/sysconfig/modules || exit 0
    3939
    4040      log_info_msg "Loading modules:"
  • chapter08/bc.xml

    rdcb4788f re15b03b  
    4444    <para>Prepare Bc for compilation:</para>
    4545
    46 <screen><userinput remap="configure">CC=gcc ./configure --prefix=/usr -G -O3 -r</userinput></screen>
     46<screen><userinput remap="configure">CC=gcc ./configure --prefix=/usr -G -O3</userinput></screen>
    4747
    4848    <variablelist>
     
    5757
    5858      <varlistentry>
    59         <term><parameter>-G</parameter></term>
    60         <listitem>
    61           <para>Omit parts of the test suite that won't work
    62           without a GNU bc present.</para>
    63         </listitem>
    64       </varlistentry>
    65 
    66       <varlistentry>
    6759        <term><parameter>-O3</parameter></term>
    6860        <listitem>
     
    7264
    7365      <varlistentry>
    74         <term><parameter>-r</parameter></term>
     66        <term><parameter>-G</parameter></term>
    7567        <listitem>
    76           <para>Enable the use of <application>Readline</application> to
    77           improve the line editing feature of bc.</para>
     68          <para>Omit  parts of the test suite that won't work
     69          without a GNU bc present.</para>
    7870        </listitem>
    7971      </varlistentry>
  • chapter08/grep.xml

    rdcb4788f re15b03b  
    7878        <term><command>egrep</command></term>
    7979        <listitem>
    80           <para>Prints lines matching an extended regular expression.
    81           It is obsoleted, use <command>grep -E</command> instead</para>
     80          <para>Prints lines matching an extended regular expression</para>
    8281          <indexterm zone="ch-system-grep egrep">
    8382            <primary sortas="b-egrep">egrep</primary>
     
    8988        <term><command>fgrep</command></term>
    9089        <listitem>
    91           <para>Prints lines matching a list of fixed strings.
    92           It is obsoleted, use <command>grep -F</command> instead</para>
     90          <para>Prints lines matching a list of fixed strings</para>
    9391          <indexterm zone="ch-system-grep fgrep">
    9492            <primary sortas="b-fgrep">fgrep</primary>
  • chapter08/openssl.xml

    rdcb4788f re15b03b  
    202202        <listitem>
    203203          <para>
    204             is a <application>Perl</application> script that
    205             scans all files in a directory and adds symbolic links to their
    206             hash values.  Use of <command>c_rehash</command> is considered
    207             obsolete and should be replaced by
    208             <command>openssl rehash</command> command
     204            is a <application>Perl</application> script that scans all files in
     205            a directory and adds symbolic links to their hash values
    209206          </para>
    210207          <indexterm zone="ch-system-openssl c_rehash">
Note: See TracChangeset for help on using the changeset viewer.