Fixed grep's -i feature.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8688 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
DJ Lucas 2008-10-21 05:31:18 +00:00
parent 36f12da493
commit c350d43a4d
3 changed files with 33 additions and 3 deletions

View File

@ -40,6 +40,11 @@
<listitem> <listitem>
<para>2008-10-21</para> <para>2008-10-21</para>
<itemizedlist> <itemizedlist>
<listitem>
<para>[dj] - Added '--without-included-regex' to grep instrcutions
in order to force the use of glibc's regex library. This fixes the
-i switch for grep.</para>
</listitem>
<listitem> <listitem>
<para>[dj] - Reintroduced the command to supress installation of the <para>[dj] - Reintroduced the command to supress installation of the
vi_VN.TCVN locale as bash is still broken with it.</para> vi_VN.TCVN locale as bash is still broken with it.</para>

View File

@ -46,10 +46,11 @@
<para>Prepare Grep for compilation:</para> <para>Prepare Grep for compilation:</para>
<screen><userinput remap="configure">./configure --prefix=/tools \ <screen><userinput remap="configure">./configure --prefix=/tools \
--disable-perl-regexp</userinput></screen> --disable-perl-regexp \
--without-included-regex</userinput></screen>
<variablelist> <variablelist>
<title>The meaning of the configure option:</title> <title>The meaning of the configure switches:</title>
<varlistentry> <varlistentry>
<term><parameter>--disable-perl-regexp</parameter></term> <term><parameter>--disable-perl-regexp</parameter></term>
@ -61,6 +62,14 @@
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry>
<term><parameter>--without-included-regex</parameter></term>
<listitem>
<para>The configure check for glibc's regex library is broken when
building against glibc-2.8. This switch forces the use of glibc's
regex library.</para>
</listitem>
</varlistentry>
</variablelist> </variablelist>
<para>Compile the package:</para> <para>Compile the package:</para>

View File

@ -55,7 +55,23 @@
<para>Prepare Grep for compilation:</para> <para>Prepare Grep for compilation:</para>
<screen><userinput remap="configure">./configure --prefix=/usr --bindir=/bin</userinput></screen> <screen><userinput remap="configure">./configure --prefix=/usr \
--bindir=/bin \
--without-included-regex</userinput></screen>
<variablelist>
<title>The meaning of the configure switch:</title>
<varlistentry>
<term><parameter>--without-included-regex</parameter></term>
<listitem>
<para>The configure check for glibc's regex library is broken when
building against glibc-2.8. This switch forces the use of glibc's
regex library.</para>
</listitem>
</varlistentry>
</variablelist>
<para>Compile the package:</para> <para>Compile the package:</para>