diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2013-10-14 19:25:15 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2013-10-14 19:25:15 +0000 |
commit | 05e908edf81c58a6d0cc34aaab91b9f7898c324c (patch) | |
tree | 3857210494bdcacca29bef04cafad734ca094ec3 /chapter05/make.xml | |
parent | 2971a56b0da022dd32912010f83b178ed029ab7f (diff) |
Update to Make-4.0. Fixes #3410.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10359 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05/make.xml')
-rw-r--r-- | chapter05/make.xml | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/chapter05/make.xml b/chapter05/make.xml index 44cbac46c..22b5afb4e 100644 --- a/chapter05/make.xml +++ b/chapter05/make.xml @@ -44,7 +44,20 @@ <para>Prepare Make for compilation:</para> -<screen><userinput remap="configure">./configure --prefix=/tools</userinput></screen> +<screen><userinput remap="configure">./configure --prefix=/tools --without-guile</userinput></screen> + + <variablelist> + <title>The meaning of the configure option:</title> + + <varlistentry> + <term><parameter>--without-guile</parameter></term> + <listitem> + <para>This ensures that Make-&make-version; won't link against Guile libraries, which + may be present on the host system, but won't be available within the + <command>chroot</command> environment in the next chapter.</para> + </listitem> + </varlistentry> + </variablelist> <para>Compile the package:</para> |