aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05/perl.xml
diff options
context:
space:
mode:
authorBruce Dubbs <bdubbs@linuxfromscratch.org>2018-08-12 16:35:49 +0000
committerBruce Dubbs <bdubbs@linuxfromscratch.org>2018-08-12 16:35:49 +0000
commit76db8d6fa13e6c7c133fc1118c127bce9dcb8564 (patch)
tree66e0c62c6ff448dcc6f3311b890d354b913de00e /chapter05/perl.xml
parent059c79e4530a1c91ae18d0bdf77c366f40911676 (diff)
Add LANG to vim test instructions.
Ensure grep tests run to completion. Run gcc tests in Chapter 6 as a non-privileged user. Move shadow to before gcc so the gcc tests can use su to run as a non-privileged user. Add perl Configure options in Chapter 5 to ensure no host system libraries are used. Update minimum make version to 4.0 required by glibc-2.28. Update bzip2 url to a new location. Update to linux-4.17.14. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11446 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05/perl.xml')
-rw-r--r--chapter05/perl.xml28
1 files changed, 27 insertions, 1 deletions
diff --git a/chapter05/perl.xml b/chapter05/perl.xml
index 14858b17b..1e55d830a 100644
--- a/chapter05/perl.xml
+++ b/chapter05/perl.xml
@@ -45,7 +45,33 @@
<para>Prepare Perl for compilation:</para>
-<screen><userinput remap="configure">sh Configure -des -Dprefix=/tools -Dlibs=-lm</userinput></screen>
+<screen><userinput remap="configure">sh Configure -des -Dprefix=/tools -Dlibs=-lm -Uloclibpth -Ulocincpth</userinput></screen>
+
+ <variablelist>
+ <title>The meaning of the Configure options:</title>
+
+ <varlistentry>
+ <term><parameter>-des</parameter></term>
+ <listitem>
+ <para>This is a combination of three options: -d uses defaults for
+ all items; -e ensures completion of all tasks; -s silences
+ non-essential output.</para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry>
+ <term><parameter>-Uloclibpth amd -Ulocincpth</parameter></term>
+ <listitem>
+ <para>These entries undefine variables that cause the configuration
+ to search for locally installed components that may exist on the
+ host system.</para>
+ </listitem>
+ </varlistentry>
+
+ </variablelist>
+
+
+
<para>Build the package:</para>