|
@@ -8,6 +8,17 @@
|
|
|
<para><screen><userinput>./configure --prefix=/tools \
|
|
|
--disable-perl-regexp --with-included-regex</userinput></screen></para>
|
|
|
|
|
|
+<para>The meaning of the configure switches:</para>
|
|
|
+
|
|
|
+<itemizedlist>
|
|
|
+<listitem><para><userinput>--disable-perl-regexp</userinput>: This makes sure
|
|
|
+that grep does not get linked against a PCRE library that may be present on
|
|
|
+the host, but would not be available once we enter the chroot environment.</para></listitem>
|
|
|
+<listitem><para><userinput>--with-included-regex</userinput>: This ensures that
|
|
|
+grep uses it's internal regular expression code. Without it, it will use
|
|
|
+the code from glibc, which is known to be slightly buggy.</para></listitem>
|
|
|
+</itemizedlist>
|
|
|
+
|
|
|
<para>Compile the programs:</para>
|
|
|
|
|
|
<para><screen><userinput>make </userinput></screen></para>
|