Changes in / [e15b03b:dcb4788f]


Ignore:
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • appendices/dependencies.xml

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

    re15b03b rdcb4788f  
    106106      evaluate_retval
    107107
    108       if egrep -qv '^(#|$)' /etc/sysconfig/createfiles 2>/dev/null; then
     108      if grep -E -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

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

    re15b03b rdcb4788f  
    4444    <para>Prepare Bc for compilation:</para>
    4545
    46 <screen><userinput remap="configure">CC=gcc ./configure --prefix=/usr -G -O3</userinput></screen>
     46<screen><userinput remap="configure">CC=gcc ./configure --prefix=/usr -G -O3 -r</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>
    5967        <term><parameter>-O3</parameter></term>
    6068        <listitem>
     
    6472
    6573      <varlistentry>
    66         <term><parameter>-G</parameter></term>
     74        <term><parameter>-r</parameter></term>
    6775        <listitem>
    68           <para>Omit  parts of the test suite that won't work
    69           without a GNU bc present.</para>
     76          <para>Enable the use of <application>Readline</application> to
     77          improve the line editing feature of bc.</para>
    7078        </listitem>
    7179      </varlistentry>
  • chapter08/grep.xml

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

    re15b03b rdcb4788f  
    202202        <listitem>
    203203          <para>
    204             is a <application>Perl</application> script that scans all files in
    205             a directory and adds symbolic links to their hash values
     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
    206209          </para>
    207210          <indexterm zone="ch-system-openssl c_rehash">
Note: See TracChangeset for help on using the changeset viewer.