mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-06-19 03:39:20 +01:00
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:
parent
36f12da493
commit
c350d43a4d
@ -40,6 +40,11 @@
|
||||
<listitem>
|
||||
<para>2008-10-21</para>
|
||||
<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>
|
||||
<para>[dj] - Reintroduced the command to supress installation of the
|
||||
vi_VN.TCVN locale as bash is still broken with it.</para>
|
||||
|
@ -46,10 +46,11 @@
|
||||
<para>Prepare Grep for compilation:</para>
|
||||
|
||||
<screen><userinput remap="configure">./configure --prefix=/tools \
|
||||
--disable-perl-regexp</userinput></screen>
|
||||
--disable-perl-regexp \
|
||||
--without-included-regex</userinput></screen>
|
||||
|
||||
<variablelist>
|
||||
<title>The meaning of the configure option:</title>
|
||||
<title>The meaning of the configure switches:</title>
|
||||
|
||||
<varlistentry>
|
||||
<term><parameter>--disable-perl-regexp</parameter></term>
|
||||
@ -61,6 +62,14 @@
|
||||
</listitem>
|
||||
</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>
|
||||
|
||||
<para>Compile the package:</para>
|
||||
|
@ -55,7 +55,23 @@
|
||||
|
||||
<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>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user